		var px=0;
		var rowHeight=-1;
		var invTick=null;
		var inv=50;
		var iRow=6;
		var st='';
		var remCount=0;
		var isOver=false;
		var t=false;
		function tick(){
			if(t==false){
				//alert('ok');
				t=true;
			}
			if(isOver) return;
			if(px==0){
				st = 'div#r' + remCount;
				rowHeight=parseInt($(st).height());
			}
			px--;
		
			
			if(px<=-rowHeight-1){
				px=0;
				
				leadsCycleList.insertRow(leadsCycleList.rows.length);
				leadsCycleList.rows[leadsCycleList.rows.length-1].innerHTML = leadsCycleList.rows[0].innerHTML;
				leadsCycleList.deleteRow(0);
				document.getElementById('r'+remCount).id='r'+iRow;

				iRow++;
				remCount++;
			} 
			
			
			
			leadsCycleList.style.marginTop=px;
			invTick=setTimeout('tick()',inv);
		}
