<!-- 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 linkstop 		= "no" 		//  START LINKS AT THE VERY TOP


document.write('<DIV id="menulocation" style="z-index: 10;">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="154"><tr><td>');
   if (linkstop == "no") {

}
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 Us</a>'); 

document.write('  <li class="menuT"><a href="https://www.google.com/calendar/hosted/apicc.org/embed?src=apicc.org_vsnm1fn6urt309le5lmtv2cdjo%40group.calendar.google.com&ctz=America/Anchorage&pvttk=5b3e70eba30b0e67e1c556885d6d60b0">Calendar</a>'); 

document.write('  <li class="menuT"><a href="contactus.htm">Contact Us</a>'); 

document.write('  <li class="menuT"><a href="courses.htm">Courses</a>'); 

document.write('  <li class="menuT"><a href="downloads.htm">Downloads</a>'); 

document.write('  <li class="menuT"><a href="providers.htm">Providers</a>'); 

document.write('  <li class="menuT"><a href="whatsnew.htm">What\'s New</a>'); 

document.write('  <li class="menuT"><a href="instructors.htm">Instructors</a>');

;document.write('<br>');

document.write('  <center>');

document.write('<li class="menuT"><a href="http://www.apicc.org" target="_new"><img src="images/pic1.jpg" border="0"></a>');

document.write('  </center>');
// END LINKS //



document.write('</ul>');
document.write('</td></tr>');


// START MENU IMAGES


   if (showimage1 == "yes") {
document.write('<br><br><a href="index.html"><img src="picts/menu-picture-1.jpg" border="0" class="borders"></a>');
}
   if (showimage2 == "yes") {
document.write('<a href="index.html"><img src="picts/menu-picture-2.jpg" border="0" class="borders"></a>');
}
document.write('</td></tr></table></DIV>');

//  End -->

















// 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;