function IEHoverPseudo() {



	var navItems = document.getElementById("primary-nav").getElementsByTagName("li");

	

	for (var i=0; i<navItems.length; i++) {

		if(navItems[i].className == "menuparent") {

			navItems[i].onmouseover=function() { this.className += " over"; }

			navItems[i].onmouseout=function() { this.className = "menuparent"; }

		}

	}



}
function clearForm(input, newText, curText) {
    if (input.value == curText) {
		input.value = newText;
		input.style.color = "#000000"
	}
}
function fillForm(input, newText) {
		if (input.value == ''){
		  input.value = newText;
		  input.style.color = "#888888"
		}
    }

window.onload = IEHoverPseudo;