// This file contains some useful additions to the menu script that don't appear in the// standard script demo. You cut and paste these into the POP_DATA file. You'll find inside://// 1) Custom mouse events, to set window status messages etc.// 2) IE5.5+ filter animation function, for PowerPoint-like menu animations.// 3) Custom item arrangement, for circular menus or multiple columns etc.// 4) Select box / IFRAME / Applet / Flash hiding function, so select boxes don't overlap menus.// 5) Long menu scrolling function, for menus larger than the window dimensions.// 6) Menu navigation by keypresses.// 7) Automatic site-map creator, for accessible websites.// Set the status message to the URL if the 'action type' is nothing, and clear on mouseout.// By now, you either have my 'JS Object Browser' script from my site or you need it... try// embedding in an IFrame and typing 'pMenu' into its Go To field to see the menu internals.pMenu.onmouseover = function(mN, iN) { with (this){ /*with (menu[mN][iN]) if (type!='sm:' && type!='js:') {  window.status = href;  return true; }*/123  //if (mN  == 'root' && iN == 1) hl('consumers','nav_consumers_over.jpg'); if (mN =='brands') hl('brands','http://www.modivmedia.com/images/nav/nav_brands_over.jpg'); if (mN =='retailers') hl('retailers','http://www.modivmedia.com/images/nav/nav_retailers_over.jpg'); if (mN =='shoppers') hl('shoppers','http://www.modivmedia.com/images/nav/nav_shoppers_over.jpg'); if (mN =='products') hl('products','http://www.modivmedia.com/images/nav/nav_products_over.jpg'); if (mN =='company') hl('company','http://www.modivmedia.com/images/nav/nav_company_over.jpg'); }};pMenu.onmouseout = function() { hl('brands','http://www.modivmedia.com/images/nav/nav_brands_up.jpg');hl('retailers','http://www.modivmedia.com/images/nav/nav_retailers_up.jpg');hl('shoppers','http://www.modivmedia.com/images/nav/nav_shoppers_up.jpg');hl('products','http://www.modivmedia.com/images/nav/nav_products_up.jpg');hl('company','http://www.modivmedia.com/images/nav/nav_company_up.jpg'); };