// site navigation

document.write("&nbsp;<br>");
document.write("<table style='text-align:center'>");
document.write("<tr>");
document.write("<td><a onmouseover='this.style.color=\"#000000\";' onmouseout='this.style.color=\"#ffffff\";' class='navs' href='index.html'>Home</a></td>");
document.write("<td><a id='preschoolNav' onmouseout='colorThis(0);' onmouseover='colorThis(1);' class='navs' href='javascript:nothing();'>Pre-School</a></td>");
document.write("<td><a onmouseover='this.style.color=\"#000000\";' onmouseout='this.style.color=\"#ffffff\";' class='navs' href='contact.htm'>Contact</a></td>");
document.write("</tr>");
document.write("</table>");


function colorThis(onOff){
	switch(onOff){
		case 1:
			document.getElementById("preschoolNav").style.background="url(http://www.nbson.com/images/orangeFade.jpg)";	  	
  		document.getElementById("preschoolNav").style.color="#000";	
  		dropDown("preschoolNav");
  	  break;
  	case 0:
			document.getElementById("preschoolNav").style.background="#000";	  	
  		document.getElementById("preschoolNav").style.color="#fff";	
  		if(document.getElementById("ddPicker")){
  				document.getElementById("ddPicker").style.visibility="hidden";
  		}
  	  break;  	
  }	
}

function nothing(){
		// do nothing
		// link blanker
}