 //initialize the slideshow when the DOM is ready 
$(document).ready(function() {
    $('.slideshow').cycle({
		timeout: 2000,  // milliseconds between slide transitions (0 to disable auto advance) 
    	speed: 4000 // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});
