// JavaScript Document
var bgcolor1=""
var bgcolor2="#000099"
	var topOffset = 95

	function smoothMove() {
		var Dif = parseInt((document.body.scrollTop+topOffset-document.getElementById("navBar").offsetTop)*.1)	
		if (isNaN(Dif)) Dif=0
		document.getElementById("navBar").style.pixelTop+=Dif
	}

	function doLoad() {
		window.setInterval("smoothMove()",20)
	}
	window.onload = doLoad;
