$(document).ready(function() {
	$("#slideshow").css("overflow", "hidden");
	
	$("ul#slides").cycle({
		fx: 'fade',
		pause: 1,
		prev: '#prev',
		speed:  '1000',
		timeout:  6000, 
		next: '#next'
	});
	
	$("#slideshow").hover(function() {
    	$("ul#arrows").fadeIn();
  	},
  		function() {
    	$("ul#arrows").fadeOut();
  	});
	
});
