jQuery(document).ready(function($) {
    // $() will work as an alias for jQuery() inside of this function
    
    
    
    
$(document).ready(function() {

	$("ul#slides").cycle({
		fx: 'fade',
		timeout: 5000,
		speed: 2000
	});

});





});


