Allow me to throw a few more roadblocks in your way. 
I also have to make this cross-browser compliant. As far as I know, DHTML was never standardized so Netscape & ie each used proprietary coding. This particular one works for NS but not ie.
I got a request for a peek at the code so here it is:
Code:
<script language="JavaScript">
<!--
function LoadMenus() {
if (window.menu_0) return;
window.menu_0 = new Menu("root",287,17,"Verdana, Arial, Helvetica, sans-serif",10,"#000000","#ffffff","#ffcc66","#000084");
menu_0.addMenuItem("Account Services and Billing Issues","location='new.html'");
menu_0.addMenuItem("Billing - New Number","location='new.html'");
menu_0.addMenuItem("Billing - Change to Information","location='new.html'");
menu_0.addMenuItem("Corporate and Operational Systems Accounts","location='new.html'");
menu_0.addMenuItem("Corporate & Operational Systems Information","location='new.html'");
menu_0.addMenuItem("Directory Corrections","location='new.html'");
menu_0.addMenuItem("Production Control","location='new.html'");
menu_0.addMenuItem("Records Management","location='new.html'");
menu_0.addMenuItem("Sybase Accounts","location='new.html'");
menu_0.addMenuItem("Technical Acquisition Support","location='new.html'");
menu_0.addMenuItem("U-wide Records & Information Practices Policies","location='new.html'");
menu_0.hideOnMouseOut=true;
} // LoadMenus()
//-->
</script>
<script language="JavaScript1.2" src="menu.js"></script>
with this in the body:
Code:
<a href="#" onMouseOut="startTimeout();" onMouseOver="window.showMenu(window.menu_0,190,44);">
<img src="1_r2_c1.gif" width="190" height="15" border="0"></a>
Bookmarks