$(document).ready(function() {
$("#slideshow").css("overflow", "hidden");
$("ul#slides").cycle({
	  before: function() {
        var alt = $('img',this).attr('alt');
        $('#caption p').html(alt);
		var tit = $('img',this).attr('title');
        $('#caption h5').html(tit);
   
        } ,
        
   
	fx: 'fade',
	pause: 1,
	 
	prev: '#prev',
	next: '#next',
	
	  });

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

	});




  
