

function noFocus() {
	
	//this.focus();
	window.focus();
	return;
}

function goMain(url)
{
	window.location=url;
	//loadFragmentInToElement(url,'fa');
	return;
}

function goNew(url)
{
	window.open(url);
	return;
}

function IEHoverPseudo() {

	var firstNavItems = document.getElementsByTagName("ul");

	for(var j=0;j<firstNavItems.length;j++){

		if(firstNavItems[j].id=="primary-nav"){
			var navItems = firstNavItems[j].getElementsByTagName("li");

			for (var i=0; i<navItems.length; i++) {
				if(navItems[i].className == "menuparent") {
					navItems[i].onmouseover=function() { this.className += " over";this.style.zIndex= "1000"; }
					navItems[i].onmouseout=function() { this.className = "menuparent"; this.style.zIndex= "100";}
				}
			}
		}
	}
}


