ieOnlyFunctions = function(){
		
	// Sons of SuckerFish Function
	var sfHover = function(){
		if(document.getElementById("wvusmainnavlinks")){
			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();}
				}
			}
		}
	}();

	// Footer Rollover Script
	var fHover = function() {
		if(document.getElementById("wvussiteoptionset01")){
			var sfEls = document.getElementById("wvussiteoptionset01").getElementsByTagName("LI");
			for (var i=0; i<sfEls.length; i++) {
				sfEls[i].onmouseover=function() {
					this.className+=" sfhover02";
				}
				sfEls[i].onmouseout=function() {
					this.className=this.className.replace(new RegExp(" sfhover02\\b"), "");
				}
			}
		}
	}();

	// Corporate Nav Email Sign Up Script
	var emailBtnHover = function(){
		if(document.getElementById("wvusemailsignupbtn")){
			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(){
		if(document.getElementById("selectcountry-decoy") && document.getElementById("selectcountry")){
			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(){
			if(document.getElementById("wvusselectlist01")){document.getElementById("wvusselectlist01").className = "wvushideselect";}
	}
	navOutSelect = function(){
			if(document.getElementById("wvusselectlist01")){document.getElementById("wvusselectlist01").className = "wvusselectlist";}
	}
}catch (e){
}

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