$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'scrollHorz',
		prev: '#prev',
		next: '#next',
		speed: 500,
		timeout: 7000,
		pause:1
	});
	
	$('.controls').show().fadeTo(1000,0.3);
	$('.controls').hover(
		function() {
			$(this).fadeTo(100,1.0);		
		},
		function() {
			$(this).fadeTo(100,0.3);
		}	
    );

});

