$(document).ready(function() {
	$("#slider").css("overflow", "hidden");	
	$("#slides").cycle({
		fx: 'fade',
		pause: 1,
		speed: 1200,
		timeout: 5000,
		prev: '.previous',
		next: '.next'
	});	
	$("#slider").hover(function() {
    	$("#nav").fadeIn();
  	},
  		function() {
    	$("#nav").fadeOut();
  	});	
});
