// Loads up the various functions we are going to use
$(document).ready(function(){
	
	
	
	$("#slideshow").css("overflow", "hidden");
	
	$("ul#slides").cycle({
		fx: 'fade',
		pause: 5,
		prev: '#prev',
		next: '#next'
	});
	
	$("#slideshow").hover(function() {
    	//$("ul#nav").fadeIn();
  	},
  		function() {
    	//$("ul#nav").fadeOut();
  	});
	
	
});

