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

	$(document).ready(function() {
	// Slideshow settings
		$("ul#slides").cycle({
			fx: 'fade',
			timeout: 6000,
			speed: 600
		});

	});

});
