$(document).ready(function() {						   

	$('#images img:gt(0)').hide();
    setInterval(function(){$('#images :first-child').fadeOut().next('img').fadeIn().end().appendTo('#images');}, 4000);


});