<!-- initialize the slideshow when the DOM is ready -->
 
$(document).ready(function() {
    $('.slideshowz').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});

