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


/*******************/




