document.write("<img src=img/logo.png width=760 height=82 class=logo>")

document.write("<div class=tacenter><div id=menudiv>")



document.write("<div id=menu class=floatleft>")

var pagename = "";

if (document.title.search(/Home/) != -1) {
pagename = "home";
document.write("<a href=index.html><img src=img/menu_home_on.gif class=menu alt=\"Home\"></a>")
}
else {
document.write("<a href=index.html "
+ "onMouseOver=\"home.src='img/menu_home_on.gif'; return true\" "
+ "onMouseOut=\"home.src='img/menu_home_off.gif'; return true\">"
+ "<img src=img/menu_home_off.gif name=home class=menu alt=\"Home\"></a>")
}

if (document.title.search(/About\sUs/) != -1) {
pagename = "about";
document.write("<a href=about.html><img src=img/menu_about_on.gif class=menu alt=\"About Us\"></a>")
}
else {
document.write("<a href=about.html "
+ "onMouseOver=\"about.src='img/menu_about_on.gif'; return true\" "
+ "onMouseOut=\"about.src='img/menu_about_off.gif'; return true\">"
+ "<img src=img/menu_about_off.gif name=about class=menu alt=\"About Us\"></a>")
}

if (document.title.search(/Products/) != -1) {
pagename = "products";
document.write("<a href=products.html><img src=img/menu_products_on.gif class=menu alt=\"Products\"></a>")
}
else {
document.write("<a href=products.html "
+ "onMouseOver=\"products.src='img/menu_products_on.gif'; return true\" "
+ "onMouseOut=\"products.src='img/menu_products_off.gif'; return true\">"
+ "<img src=img/menu_products_off.gif name=products class=menu alt=\"Products\"></a>")
}

if (document.title.search(/Contact\sUs/) != -1) {
pagename = "contact";
document.write("<a href=contact.html><img src=img/menu_contact_on.gif class=menu alt=\"Contact Us\"></a>")
}
else {
document.write("<a href=contact.html "
+ "onMouseOver=\"contact.src='img/menu_contact_on.gif'; return true\" "
+ "onMouseOut=\"contact.src='img/menu_contact_off.gif'; return true\">"
+ "<img src=img/menu_contact_off.gif name=contact class=menu alt=\"Contact Us\"></a>")
}

if (document.title.search(/-\sServices/) != -1) {
pagename = "services";
document.write("<a href=services.html><img src=img/menu_services_on.gif class=menu alt=\"Services\"></a>")
}
else {
document.write("<a href=services.html "
+ "onMouseOver=\"services.src='img/menu_services_on.gif'; return true\" "
+ "onMouseOut=\"services.src='img/menu_services_off.gif'; return true\">"
+ "<img src=img/menu_services_off.gif name=services class=menu alt=\"Services\"></a>")
}

if (document.title.search(/Location\sMap/) != -1) {
pagename = "locationmap";
document.write("<a href=locationmap.html><img src=img/menu_locationmap_on.gif class=menu alt=\"Location Map\"></a>")
}
else {
document.write("<a href=locationmap.html "
+ "onMouseOver=\"locationmap.src='img/menu_locationmap_on.gif'; return true\" "
+ "onMouseOut=\"locationmap.src='img/menu_locationmap_off.gif'; return true\">"
+ "<img src=img/menu_locationmap_off.gif name=locationmap class=menu alt=\"Location Map\"></a>")
}

document.write("</div>")



// check for frames
if (parent.frames.length != 0)
  document.title = parent.document.title;

// product subpages
if (document.title.search(/Jet-Lube/) != -1)
pagename = "products_jetlube";
if (document.title.search(/MSI/) != -1)
pagename = "products_msi";
if (document.title.search(/Best\sSwivel/) != -1)
pagename = "products_bestswivel";
if (document.title.search(/Drill\sPipe\sFloat\sValve/) != -1)
pagename = "products_drillpipe";

// disclaimer, privacy policy
if (document.title.search(/Disclaimer/) != -1 || document.title.search(/Privacy\sPolicy/) != -1)
pagename = "home";

document.write("<div class=floatright>")
document.write("<img src=img/menu_right_" + pagename + ".jpg>")
document.write("</div>")



document.write("</div></div>")