<!--

function loadUp()
{
	startList();
	
}

startList = function() 
{
	navRoot = new Array(5)
	if (document.all&&document.getElementById) 
	{
		navRoot[1] = document.getElementById("nav2");
		navRoot[0] = document.getElementById("nav1");
		navRoot[2] = document.getElementById("nav3");
		for(a=0; a < 3; a++)
		{
			for (i=0; i<navRoot[a].childNodes.length; i++) 
			{
				node = navRoot[a].childNodes[i];
				if (node.nodeName=="LI") 
				{
					node.onmouseover=function() 
					{
						this.className+=" over";
 			 		}
  					node.onmouseout=function() 
  					{
  						this.className=this.className.replace(" over", "");
   					}
   				}
  			}
  		}
 	}
}
function checkForm(t)
{
	if(t.name.value=="")
	{
		alert("No name entered, please enter a name and retry");
		t.name.focus();
		return false;
	}
	if(t.email.value=="")
	{
		alert("No email address entered, please enter an email address and retry");
		t.email.focus();
		return false;
	}
	if(t.message.value=="")
	{
		alert("No message entered, please enter a message and retry");
		t.message.focus();
		return false;
	}
	return true;

}

//-->