
$(document).ready(function() {

	$("div.scrollable").scrollable({
		clickable: false
	});

	$('#images')
		.after('<div id="controls">')
		.cycle({
			fx: 'fade',
			speed: 'slow',
			timeout: 5000,
			pager: '#controls'
		
	});
		
    $('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });		
	
});

   
	


