// <!--
/*
	The following JavaScript below provides the smooth movement of the
	left-hand navigation menu.
	*/
	var topOffset = 115

	function smoothMove() {
		if (document.layers || document.all){
			var Dif = parseInt((document.body.scrollTop+topOffset-document.all.navBar.offsetTop)*.20)
			// Work-around wierd Netscape NaN bug when Dif is 0
			if (isNaN(Dif)) Dif=0
			document.all.navBar.style.pixelTop+=Dif
		} else {
			var Dif = parseInt((document.body.scrollTop+topOffset-document.getElementById("navBar").offsetTop)*.20);
			document.getElementById("navBar").style.Top+=Dif;
		}
	}

	function doLoad() {
		if (document.layers || document.all) setup();
		window.setInterval("smoothMove()",20)
	}
//	window.onload = doLoad;
// -->
