function fLoopPromoImages(){
	var $oCurr=$("#oMainElementB1 img:visible")
	var $oNext=$oCurr.next()
	if($("#oMainElementB1 img:visible").is(":last-child")) $oNext=$("#oMainElementB1 img:first")
	$oCurr.fadeOut(500);
	$oNext.fadeIn(800)

	$oCurr=$("#oMainElementB2 img:visible")
	$oNext=$oCurr.next()
	if($("#oMainElementB2 img:visible").is(":last-child")) $oNext=$("#oMainElementB2 img:first")
	$oCurr.fadeOut(500);
	$oNext.fadeIn(800)

	setTimeout(fLoopPromoImages,5000);
}

$(document).ready(function(){
	$("#oMainElementB1 img:first, #oMainElementB2 img:first").show();
	setTimeout(fLoopPromoImages,5000);
});
