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

