$(document).ready(function(){
			$('#image_slide').cycle({
				fx: 'fade',
				speed: 5000,
				timeout: 1500
			});
		}); 



// execute your scripts when DOM is ready. this is a good habit 
$(function() {         
         
    // initialize scrollable  
    $("div.scrollable").scrollable();  
	
     
}); 

$(function() { 
    /* execute this script block when page is ready to be scripted */ 
 
    // select items under the second scrollable and do something when they are clicked 
    $("div.scrollable:eq(1) div.items div").click(function() { 
     
        // perform the effect 
        $(this).fadeOut().fadeIn(); 
         
    }); 
});

