// JavaScript Document
<!--  initialize the slideshow when the DOM is ready -->
$(document).ready(function() {
    $('.slideshow').cycle({
		fx:    'scrollLeft', 
    delay: -1000 
	});
});

