var path="./";
var aboutus = new Object();
aboutus.on="images/about_on.gif";
aboutus.off="images/about_off.gif";
aboutus.name="About";
aboutus.altName="About Us";
aboutus.href="about.html";
aboutus.isHome=false;

var calendar = new Object();
calendar.on="images/services_on.gif";
calendar.off="images/calendar_off.gif";
calendar.name="Calendar";
calendar.altName="Calendar";
calendar.href="Calendar/index.html";
calendar.isHome=false;

var homepage = new Object();
homepage.on="images/products_on.gif";
homepage.off="images/products_off.gif";
homepage.name="Home";
homepage.altName="Home";
homepage.href="index.html";
homepage.isHome=false;

var contact = new Object();
contact.on="images/contact_on.gif";
contact.off="images/contact_off.gif";
contact.name="Contact";
contact.altName="Contact";
contact.href="contact.html";
contact.isHome=false;

var gallery = new Object();
gallery.on="images/gallery_on.gif";
gallery.off="images/gallery_off.gif";
gallery.name="Gallery";
gallery.altName="Gallery";
gallery.href="gallery.html";
gallery.isHome=false;

var staff = new Object();
staff.on="images/sitemap_on.gif";
staff.off="images/sitemap_off.gif";
staff.name="Staff";
staff.altName="Staff";
staff.href="staff1.html";
staff.isHome=false;

var handbook = new Object();
handbook.on="images/handbook_on.gif";
handbook.off="images/handbook_off.gif";
handbook.name="Handbook";
handbook.altName="handbook";
handbook.href="handbook/handbook.html";
handbook.isHome=false;

var tabs = new Array(homepage, handbook, aboutus, staff, calendar, contact, gallery);
function drawTabs() {
for (var i = 0; i < tabs.length; i++) {
  if (tabs[i].isHome) {
    document.write("<a href=" + path + tabs[i].href + "><img src=" + path + tabs[i].on + " alt=" + tabs[i].altName + " name=" + tabs[i].name + " width=\"87\" height=\"30\" border=\"0\"></a>");
  } else {
    document.write("<a href=" + path + tabs[i].href + " onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('" + tabs[i].name + "','','" + path + tabs[i].on + "',1)\"><img src=" + path + tabs[i].off + " alt=" + tabs[i].altName + " name=" + tabs[i].name + " width=\"87\" height=\"30\" border=\"0\"></a>"); 
  }
}
document.write("<img src=" + path + "images/menu_end.gif" + " width=\"412\" height=\"30\">");
}

