ieOnlyFunctions = function(){
		
	// Sons of SuckerFish Function
	var sfHover = function() {
		var sfEls = document.getElementById("wvusmainnavlinks").getElementsByTagName("LI");
		for (var i=0; i<sfEls.length; i++) {
			sfEls[i].onmouseover=function() {
				this.className+=" sfhover";
				if(this.id == "nav02" || this.id == "nav03"){navOverSelect();}
			}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
				if(this.id == "nav02" || this.id == "nav03"){navOutSelect();}
			}
		}
	}();

	// Corporate Nav Email Sign Up Script
	var emailBtnHover = function(){
		var eBtnElm = document.getElementById("wvusemailsignupbtn");
		eBtnElm.onmouseover=function() {
				this.className+=" btnhover";
		}
		eBtnElm.onmouseout=function() {
				this.className=this.className.replace(new RegExp(" btnhover\\b"), "");
		}
	}();

try{
	// This is the Select Form Decoy Hack to Prevent the select form from showing through the Dropdown Menu
	var updateSelectDecoy = function(){
			document.getElementById("selectcountry-decoy").innerHTML = document.getElementById("selectcountry").options[document.getElementById("selectcountry").selectedIndex].innerHTML;
			document.getElementById("selectcountry").onchange = function(){
				document.getElementById("selectcountry-decoy").innerHTML = document.getElementById("selectcountry").options[document.getElementById("selectcountry").selectedIndex].innerHTML;
				document.getElementById("selectcountry").blur();
				document.getElementById("findchildbtn").focus();
			}
	}();
	navOverSelect = function(){
			document.getElementById("wvusselectlist01").className = "wvushideselect";
	}
	navOutSelect = function(){
			document.getElementById("wvusselectlist01").className = "wvusselectlist";
	}
}catch (e){
}

}
if (window.attachEvent) window.attachEvent("onload", ieOnlyFunctions);
