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

	$("ul#slides").cycle({
		fx: 'fade',
		timeout: 4500,
		speed: 1500,
		pause: 1
	});

});





});


