$(window).load(function(){

	$("#wrapper.homewrapper #bg-images").show();
	cycleTopImages();	
	
	function cycleTopImages() {
		  $('#wrapper.homewrapper .bg-image:last').fadeOut(5000, function(){
		    $(this).clone().prependTo('#bg-images').show();
		    $(this).remove();
		    cycleTopImages();
		  });
	}
	
});
