$(document).ready(function() {
    $('#slideshow').each(function(){
    	$(this).cycle({
			fx: 'fade',
			speed:1000,
			timeout:12000,
			startingSlide:0
		});
		$('.caption').fadeIn("slow");
	});
});

