function rgpoImageRotation(id, fadeTime, timeOut) {
	$(function() {
		$('#'+id+' img:gt(0)').hide();
		setInterval(function() {
			$('#'+id+' :first-child').fadeOut(fadeTime)
				.next('img').fadeIn(fadeTime)
				.end().appendTo('#'+id);
			}, timeOut
		);
	});
}

