var opc=0;
var totalRow=0;
var curIdx=0

$(document).ready(function(){
	totalRow = $("#idProductPromotion tr").length;
	flipAdv();	 
});
   		
var targetIdx=0;
function fadeElement(){
	if (targetIdx<totalRow){
		$("#idProductPromotion tr:eq("+targetIdx+") div.ppadv").each(function(j){
			if (j!=0){
				targetIdx=targetIdx+1;				
				if ($(this).css("display") != 'none'){
	     			$(this).fadeOut("slow",fadeElement);
	     		}else{
	     			$(this).fadeIn("slow",fadeElement);
	     		}
	     	}
		});
	}else{
		targetIdx=0;
	}
}
   		
function flipAdv(){
  	fadeElement();
  	setTimeout(flipAdv, 5000);
		
	/*
	for (var i=0;i<totalRow;i++){
		$("#idProductPromotion tr:eq("+i+") div.ppadv").each(function(j){
			if (j!=0){
				if ($(this).css("display") != 'none'){
      			$(this).fadeOut("slow");
      		}else{
      			$(this).fadeIn("slow");
      		}
      	}
   	});
	}

	setTimeout(flipAdv, 3000);
	*/
}

