$(document).ready(function() {
						   
    $('#cyclebox').cycle({
	fx:     'scrollLeft' ,
	speed:  1000,
	timeout: 4000,
	easing: "easeInOutQuad"
	});
	
	$(".cyclefade").hover(
  function () {
    $(this).find('img').fadeOut('fast');
  },
  function () {
    $(this).find('img').fadeIn('fast');
  }
);
	
});
