var currentTopLocation = String(top.location);  // get the current page
var directoryAdjustment = String("");

if(currentTopLocation.indexOf("index.html") == -1 && currentTopLocation.indexOf(".html") > -1)  // check if we are on the homepage or a subpage
	directoryAdjustment = String("../");

var toWrite = String("");
toWrite += '<table cellspacing="0" cellpadding="0" id="menu" class="menu" >';
toWrite += '<tr><td><a id="menu1" href="' + directoryAdjustment + 'index.html" ><b>Home</b></a></td>';
toWrite += '       <td><a id="menu2" ><b>About</b></a></td>'; 
toWrite += '       <td><a id="menu5" ><b>Resources</b></a></td>'; 
toWrite += '       <td><a id="menu6" ><b>Contact Us</b></a></td>'; 
toWrite += '       <td><a id="menu7" ><b>Order Online</b></a></td>'; 
toWrite += '       <td class="last"><a id="menu8" href="http://premiertools.firstam.com/PremierTools.asp" ><b>Premier Tools</b></a></td>'; 
toWrite += '</tr>'; 
toWrite += '</table>';
document.writeln(toWrite);
