$(document).ready(function(){
  $('#headerSlideshow').hover(
	function() { $('#headerSlideshowControlsPrev').fadeIn(); },
	function() { $('#headerSlideshowControlsPrev').fadeOut(); }
	);
  $('#headerSlideshow').hover(
	function() { $('#headerSlideshowControlsNext').fadeIn(); },
	function() { $('#headerSlideshowControlsNext').fadeOut(); }
	);
  $('#slides').cycle({
		fx:     'scrollHorz',
		speed: 300,
		prev:   '#prev',
		next:   '#next',
		timeout: 4000
	});
});
