$(document).ready(function(){
	// nice little fade-from-one-image-to-another transition; change 5000 to change speed
	$(function(){
		// where #imageholder is the ID of the container holding your images
		$('#slideshow img:gt(0)').hide();
		setInterval(function(){$('#slideshow :first-child').hide().next('img').fadeIn('slow').end().appendTo('#slideshow');}, 5000);
	});
});

