<!-- 
var dropwatchcount = 0; 
var dropwatchtemp = null; 
 
function resetDropWatch(){ 
	//alert("resetDropWatch"); 
	dropwatchcount = 0; 
} 
function dropWatch(){ 
	if(dropwatchtemp != null){ 
		clearInterval(dropwatchtemp); 
	} 
	if(dropwatchcount == 45){ 
		//alert("before: "+dropwatchcount); 
		resetDropWatch(); 
		//alert("after reset: "+dropwatchcount); 
		clearUpDrop(pullupgg,pullupregion,pullupwildlife,pulluptribal,pulluppalace); 
		//alert("after clearup: "+dropwatchcount); 
	}else{ 
		dropwatchcount++; 
	} 
	dropwatchtemp = setInterval("dropWatch()",30); 
} 
 
function clearUpDrop(){//pullupbooks,pullupauthors,pullupsellers,pullupcontact i.e the variable names of div move string 
		//alert("clearUpDrop");
		for(cudr=0;cudr<arguments.length;cudr++){
			var temptransfer = arguments[cudr];
			moveDivs(temptransfer);
		}
}
//--> 
