>
function bodyOnLoad(){ commands }The menu system will not load if you do not do this!
<script src='menu3_dhtml.lib' language='JavaScript1.2'></script> <script src='menu3.js' language='JavaScript1.2'></script> <script language='JavaScript1.2'> <!-- //################################ //#******************************# //#******Polymath Menus v3.2*****# //#***Produced by Blake Lucas****# //#*http://polymathic.tripod.com*# //#**blacklight@nc.prestige.net**# //#******************************# //################################ //MENU : menu954980842610 menu954980842610=new menu('menu954980842610'); menu954980842610.tree=new Array(); menu954980842610.fontColor='yellow'; menu954980842610.fontHoverColor='black'; menu954980842610.fontBgColor='gray'; menu954980842610.fontHoverBgColor='#C0C0C0'; menu954980842610.borderWidth=0; menu954980842610.borderBgColor='#FFFFFF'; menu954980842610.menuSpace=1; menu954980842610.menuOffset=15; menu954980842610.menuStayOpen=false; menu954980842610.cascadeDirection='Right'; menu954980842610.menuWidth=52; menu954980842610.fontSize=3; menu954980842610.fontBold=true; menu954980842610.fontItalic=false; menu954980842610.fontFace='Times'; menu954980842610.targetFrame=''; menu954980842610.arrowUrl='arrow.gif'; menu954980842610.menuTitle='Main'; menu954980842610.position='Left,Top'; menu954980842610.positionLock=false; menu954980842610.newStyle=true; //END MENU : menu954980842610 function bodyOnLoad(){ } //--> </script>
//MENU : menuName ...code //END MENU : menuNameThen, copy that code into a menu you already have and put it right after the
//END MENU : menuNamein that file. See this example and look at the source.
<a href="#" onmouseover="menuuName.show()" onmouseout="menuName.roller=false">open menu</a>or it could be done like this:
<a href="#" onclick="menuuName.show()" onmouseout="menuName.roller=false">open menu</a>
|