// JavaScript Document

over = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" over";
			document.getElementById("range").style.display="none";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp("over"), "");
			document.getElementById("range").style.display="block";
		}
		
	}
	
	
}
if (window.attachEvent) window.attachEvent("onload", over);

over = function() {
	var sfEls = document.getElementById("navMain").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" over";
			document.getElementById("range").style.display="none";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp("over"), "");
			document.getElementById("range").style.display="block";
		}
		
	}
	
	
}
if (window.attachEvent) window.attachEvent("onload", over);