$(document).ready(function() 
{
    $('.slideshow').cycle({
		
		fx:      'fade', 
		speed:    1000, 
		timeout:  4000,
		next:   '#nextbtn',
		prev:   '#prevbtn',
		pause:  1
		
	});
	
	$('#nextbtn, #prevbtn').hover(
	
		function()
		{
			$(this).fadeTo('slow',1);
			
		},
		
		function()
		{
			$(this).fadeTo('slow',0.25);
			
		}
	
	
	);
	
	
	
	
	
	
	
	
});

