(function($){
	
// The DOM is now ready
$(function() {
	$('ul#firstSlideshow').cycle({
		fx: 'fade',
		timeout: 5500,
		speed: 1500
	});
	$('ul#secondSlideshow').cycle({
		fx: 'fade',
		timeout: 5500,
		speed: 1500,
		delay: 2000
	});
	
});

})(jQuery); // Pass in jQuery so we can safely use the $ alias within this block

