var currentr=0;
function initBannerRight(speed,total){
	currentr++;
	if (currentr > total){
		currentr=1;
	}
	$('#bannerRight'+currentr).fadeIn(speed,function(){
			$('#bannerRight'+currentr).fadeOut(speed,function(){
					initBannerRight(speed,total);
					})
			});
}

