$(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
		$('#imageholder img:gt(0)').hide();
		setInterval(function(){$('#imageholder :first-child').fadeOut().next('img').fadeIn().end().appendTo('#imageholder');}, 5000);
	});
});

