/**
 * Slideshow
 *
 * @requires	jQuery
 */
$('#slideshow').hover(function(){
	$('.controls:hidden').fadeIn();
}, function(){
	$('.controls:visible').fadeOut();
}).children('.slides').cycle({
	fx:			'scrollHorz',
	timeout:	7500,
	pause:		1,
	next:		'.next',
	prev:		'.previous'
});
