function overrideStyles(){
		//Detect IE5.5+
		version=0
		isIE = false;
		if (navigator.appVersion.indexOf("MSIE")!=-1){
			isIE = true;
			temp=navigator.appVersion.split("MSIE")
			version=parseFloat(temp[1])
		}

		if(isIE == true)
		{
			if (version>=5.5 && version <7) //NON IE browser will return 0
			{
				//alert(_path+'oldieoverrides.css')
				document.write('<link href="'+_path+'oldieoverrides.css" type="text/css" rel="stylesheet" media="screen" />');
			}
		}
	}

	overrideStyles()




	//sfHover = function() {
	//var sfEls = document.getElementById("MenuMain").getElementsByTagName("LI");
	//for (var i=0; i<sfEls.length; i++) {
	//		sfEls[i].onmouseover=function() {
	//				this.className+=" sfhover";
	//		}
	//		sfEls[i].onmouseout=function() {
	//			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
	//		}
	//}
//}


//if (window.attachEvent) window.attachEvent("onload", sfHover);
