$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'scrollLeft',
		speed:       700,
		timeout:         1800
	});
	$('.slideshow').cycle('pause');
	
	Shadowbox.init();
});

$(document).ready(function(){
	 $('.slideshow').hover(
    function () {
      $(this).cycle('next');
      $(this).cycle('resume');
    }, 
    function () {
      $(this).cycle('pause');
    }
  );
});
