$(document).ready(function() {
	
	$("#slideshow").css("overflow", "hidden");

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

	/*$("#slideshow").hover(function() {
		$("ul#nav").fadeIn();
		},
			function() {
		$("ul#nav").fadeOut();
		});*/
});

