<!-- Begin



// NOTE: If you use a ' add a slash before it like this \'



// USE lowercase FOR ALL OPTIONS ONLY



var showimage1		= "yes"		//  SHOW FIRST SIDEBAR IMAGE

var showimage2		= "yes"		//  SHOW SECOND SIDEBAR IMAGE

var linkstop 		= "yes" 		//  START LINKS AT THE VERY TOP





document.write('<DIV id="menulocation" style="z-index: 10;" class="printhide">');

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="200"><tr><td>');



   if (showimage2 == "yes") {

document.write('<img src="picts/pixel-black.gif" width="100%" height="2" border="0"><br><br><br>');

}



   if (linkstop == "no") {

document.write('<img src="picts/menu-top.gif" width="200" height="90" class="menutrans"><br>');

}

document.write('<ul id="top-nav">');





// START MENU LINKS - EDIT BELOW THIS AREA



document.write('    <li class="menuT"><a href="index.htm">Home</a></li>');



document.write('  <li class="menuT"><a href="about.htm">About</a>'); 

document.write('  </li>');



document.write('  <li class="menuT"><a href="news.htm">News</a>');

document.write('  </li>');



document.write('  <li class="menuT"><a href="services.htm">Services</a>');

document.write('  </li>');



document.write('  <li class="menuT"><a href="policies.htm">Policies</a>');

document.write('  </li>');



document.write('  <li class="menuT"><a href="contact.htm">Contact</a></li>');





// END LINKS //







document.write('</ul>');

document.write('</td></tr><tr><td align="center">');





// START MENU IMAGES





   if (showimage1 == "yes") {

document.write('<br><br><img src="picts/pixel-black.gif" width="100%" height="2" border="0"><br><br><br>');

}



document.write('</td></tr></table></DIV>');



//  End -->







// COPYRIGHT 2006 © Allwebco Design Corporation

// Unauthorized use or sale of this script is strictly prohibited by law



// YOU DO NOT NEED TO EDIT BELOW THIS LINE





function IEHoverPseudo() {



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

	

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

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

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

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

		}

	}



}

window.onload = IEHoverPseudo;
