<!-- 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		= "no"		//  SHOW SECOND SIDEBAR IMAGE
var showtop		= "yes"		//  SHOW MENU TOP AREA

   if (showtop == "yes") {
document.write('<div id="menutop" style="z-index: 10;" class="printhide">');
document.write('<img src="picts/menu-top.gif" width="152" height="107" class="menutrans"><br>');
document.write('</div>');
}

document.write('<div id="menulocation" style="z-index: 10;">');
document.write('<table cellpadding="0" cellspacing="0" border="0" width="154"><tr><td class="printhide">');

document.write('<ul id="top-nav">');




// START MENU LINKS - EDIT BELOW THIS AREA




document.write('  <li class="menuT"><a href="index.html">Home</a></li>');

document.write('  <li class="menuT"><a href="notbroc.pdf">Brochure</a></li>');
document.write('  <li class="menuT"><a href="ns.htm">Notary Services</a></li>');
document.write('  <li class="menuT"><a href="ninsp.htm">Inspections</a></li>');
document.write('  <li class="menuT"><a href="nps.htm">Preservation Services</a></li>');
document.write('  <li class="menuT"><a href="nta.htm">Title Abstracts</a></li>');

document.write('  <li class="menuT"><a href="ninf.htm">Information</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="http://www.nationalnotary.org/join/index.cfm?referID=A33037apsif.htm">Become a Notary</a></li>');
document.write('      <li><a href="privacy.htm">Privacy Policy</a></li>');
document.write('      <li><a href="notbroc.pdf.htm">Our Brochure</a></li>');
document.write('      <li><a href="links.htm">Website Links</a></li>');

document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="nserv.htm">Schedule Service</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="ncon.htm">Notary Request</a></li>');
document.write('      <li><a href="apsif.htm">Inspection...Request</a></li>');
document.write('      <li><a href="apspsf.htm">Preservation Request</a></li>');
document.write('      <li><a href="ntaf.htm">Title Abstract..Request</a></li>');

document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="ncon.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 name="Vert2" src="http://www.nationalnotary.org/userimages/Vert2.gif" width="115" height="252" border="0" usemap="#m_Vert2"><map name="m_Vert2">')
document.write('<area shape="rect" coords="0,193,115,252" href="http://www.nationalnotary.org/join/index.cfm?referID=A33037" target="_blank" title="Join the National Notary Association" alt="Join the National Notary Association" >')
document.write('<area shape="rect" coords="0,156,115,194" href="http://www.nationalnotary.org/supplies/index.cfm?referID=A33037" target="_blank" title="Shop for Notary Supplies" alt="Shop for Notary Supplies" >')
document.write('<area shape="rect" coords="0,96,115,157" href="http://www.nationalnotary.org/sections/index.cfm?text=nsAgentMain&referID=A33037" target="_blank" title="Become a Notary Signing Agent" alt="Become a Notary Signing Agent" ></map>')
document.write('</a><br><br>');




document.write('<br><br><a href="index.html"><img src="picts/APS_pm.gif" border="0" class="borders"></a><br><br><br>');
}

   if (showimage2 == "yes") {
document.write('<a href="index.html"><img src="picts/APS_logo.gif" border="0" class="borders"></a><br><br>');
}

//  End -->



document.write('</td></tr></table></DIV>');





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;