var currentt=0;
function initBannerTop(speed,total){
	currentt++;
	if (currentt > total){
		currentt=1;
	}
	$('#bannerTop'+currentt).fadeIn(speed,function(){
			$('#bannerTop'+currentt).fadeOut(speed,function(){
					initBannerTop(speed,total);
					})
			});
}

