

function moveDiv(locMax) {

	currLoc = document.all.navtable.style.top;
	
	for (i=currLoc;i<locMax;i++) {
		document.all.navtable.style.top = i;
	}
	
	document.all.navtable.style.top = locMax;
	
}
