var nMeZindex = 2;

function fLoopPromoImages(){
	var $oCurr=$("#oMainElement .clsItem:visible")
	var $oNext=$oCurr.next()
	if($("#oMainElement .clsItem:visible").is(":last-child")) return; //$oNext=$("#oMainElement .clsItem:first")
	$oNext.css("zIndex",(nMeZindex++)).fadeIn(800)
	setTimeout(fLoopPromoImages,1200);
}

$(document).ready(function(){
	$("#oMainElement .clsItem:first").show();
	setTimeout(fLoopPromoImages,1200);
});
