startList = function(){
	if (document.all&&document.getElementById){
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++){
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI"){
				node.onmouseover=function(){
					this.className+=" over";
				}
				node.onmouseout=function(){
					this.className=this.className.replace(" over", "");
				}
				for(x=0;x<node.childNodes.length; x++){
					newnode = node.childNodes[x];
					if(newnode.nodeName=="UL"){
						for(u=0; u<newnode.childNodes.length; u++){
							bottomnode = newnode.childNodes[u];
							if(bottomnode.nodeName=='LI'){
								bottomnode.onmouseover=function(){
									this.className+=" over";
								}
								bottomnode.onmouseout=function(){
									this.className=this.className.replace(" over", "");
}}}}}}}}
 document.forms[0].elements[0].value="Your Name";
 document.forms[0].elements[1].value="Your Email Address";
 document.forms[0].elements[2].value="Your Phone Number";
 document.forms[0].elements[0].onfocus = function(){ if(this.value=='Your Name'){ this.value=''; } }
 document.forms[0].elements[0].onblur = function(){ if(this.value==''){ this.value='Your Name'; } }
 document.forms[0].elements[1].onfocus = function(){ if(this.value=='Your Email Address'){ this.value=''; } }
 document.forms[0].elements[1].onblur = function(){ if(this.value==''){ this.value='Your Email Address'; } }
 document.forms[0].elements[2].onfocus = function(){ if(this.value=='Your Phone Number'){ this.value=''; } }
 document.forms[0].elements[2].onblur = function(){ if(this.value==''){ this.value='Your Phone Number'; } }

}
window.onload=startList;