// JavaScript Document


// JavaScript Document
mainNavHover = function() {
    if (document.getElementById("nav_bottom")) {
	    var sfEls = document.getElementById("nav_bottom").getElementsByTagName("li");
    	
	    for (var i=0; i<sfEls.length; i++) {
		    sfEls[i].onmouseover=function() {
			    this.className+=" over";
		    }
		    sfEls[i].onmouseout=function() {
			    this.className=this.className.replace(new RegExp(" over\\b"), "");
		    }
	    }
    }
}// JavaScript Document
if (window.attachEvent) window.attachEvent("onload", mainNavHover);










mainNavHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("li");
	
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" over";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over\\b"), "");
		}
	}
}// JavaScript Document
if (window.attachEvent) window.attachEvent("onload", mainNavHover);







function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=183,height=239');");
}
// End -->