(function() {

$(document).ready(function() {
$('.slideshow').each(function() {
var slideshow = $(this);
slideshow.cycle({ fx: 'scrollRight' });
slideshow.cycle('pause').hover(function() {
slideshow.cycle('resume', true);
}, function() {
slideshow.cycle('pause');
});
});
});

})(jQuery);


