function initMenu() { var divs = document.getElementsByTagName("div"); for (i = 0; i < divs.length; i++) { if (divs[i].className == "menubook") { decorateMenu(divs[i]); } } } function decorateMenu(menu) { menu.onmouseover=function() { this.className += ' over1'; if (menu.firstChild.name) { var mid = eval("window." + menu.firstChild.name.replace("ll", "lm")); MM_showMenu(mid,160,0,null,menu.firstChild.name); } } menu.onmouseout=function() { this.className = this.className.replace(' over1', ''); MM_startTimeout(); } menu.onclick=function() { if (menu.firstChild.nodeName == 'A') { location.href = menu.firstChild.href; } } } function mmLoadLeftMenus() { if (!window.lm_books) { window.lm_books=new Menu('Books',260,24,'Tahoma, Helvetica, sans, Arial, sans-serif',12,'#1668c4','#00336b','#C5E0FF','#E2EFFD','left','middle',10,0,500,0,0,true,true,true,0,false,false); lm_books.menuBorder=0; lm_books.menuItemBorder=0; lm_books.addMenuItem('» Flagship Books','location="./bookAndPublishing.htm?id=8"');lm_books.addMenuItem('» Explorer Guides','location="./bookAndPublishing.htm?id=320"');lm_books.addMenuItem('» Hong Kong General','location="./bookAndPublishing.htm?id=150"');lm_books.addMenuItem('» Miscellaneous','location="./bookAndPublishing.htm?id=151"'); } } initMenu(); mmLoadLeftMenus();