var hBar = new ItemStyle(70, 20, '', 0, 0, '','', 'topMenu', 'topMenu', '', '', null, null, 'hand', 'hand'); //var hBar = new ItemStyle(70, 20, '', 0, 0, '','', 'topMenu', 'topMenu', '', '', null, null); var dropBar = new ItemStyle(17, 0, '>', -10, 0, '#FFF8E8', '#FFDEAD', 'dropMenu', 'dropMenuHover', 'dropMenuBorder', 'dropMenuBorder', 100, 100, 'hand', 'default'); var dropY = 18; var pMenu = new PopupMenu('pMenu'); with (pMenu) { startMenu('root', false, 20, 3, 14, hBar, ''); //addItem('Home', '/index.html', ''); //addItem('About', 'mAbout', 'sm:'); //addItem('Services', 'mServices', 'sm:'); //addItem('Products', 'mProducts', 'sm:'); //addItem('Showcase', 'mShowcase', 'sm:'); startMenu('mAbout', true, 0, dropY, 90, dropBar, ''); addItem('Who we are','/about/who.html',''); addItem('Experience','/about/experience.html',''); addItem('Contact','/about/contact.html',''); startMenu('mProducts', true, 0, dropY, 150, dropBar, ''); addItem('EchoFilter - Digital filter','/echofilter/index.html',''); addItem('PIC Datalogger','/picmicro/index.html',''); startMenu('mServices', true, 0, dropY, 150, dropBar, ''); addItem('Windows programming','/services/windows.html',''); addItem('E-learning development','/services/elearning.html',''); addItem('Web programming','/services/web.html',''); addItem('Web design','/services/webdesign.html',''); startMenu('mShowcase', true, 0, dropY, 100, dropBar, ''); addItem('Background','/projects/index.html',''); addItem('Industrial','/projects/industrial.html',''); addItem('Educational','/projects/educational.html',''); addItem('Web based','/projects/web.html',''); addItem('Financial','/projects/financial.html',''); addItem('Other','/projects/other.html',''); menu.root[0].subsOnClick = true; } //pMenu.update(true); for (var mN in pMenu.menu) { pMenu.update(!isNS4, mN); } //pMenu.click(); //document.onclick = function(evt) { pMenu.click(); }