//Menu object creation oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname oCMenu.frames = 0 //Menu properties oCMenu.pxBetween=20 oCMenu.fromLeft=20 oCMenu.fromTop=90 oCMenu.rows=1 oCMenu.menuPlacement="center" oCMenu.offlineRoot="" oCMenu.onlineRoot="/" oCMenu.resizeCheck=1 oCMenu.wait=1000 oCMenu.fillImg="cm_fill.gif" oCMenu.zIndex=0 //Background bar properties oCMenu.useBar=0 //Level properties - ALL properties have to be spesified in level 0 oCMenu.level[0]=new cm_makeLevel() //Add this for each new level oCMenu.level[0].width=200 oCMenu.level[0].height=29 oCMenu.level[0].regClass="clLevel0" oCMenu.level[0].overClass="clLevel0over" oCMenu.level[0].borderX=1 oCMenu.level[0].borderY=1 oCMenu.level[0].borderClass="clLevel0border" oCMenu.level[0].offsetX=0 oCMenu.level[0].offsetY=0 oCMenu.level[0].rows=0 oCMenu.level[0].arrow=0 oCMenu.level[0].arrowWidth=0 oCMenu.level[0].arrowHeight=0 oCMenu.level[0].align="bottom" //EXAMPLE SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this oCMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number) oCMenu.level[1].width=oCMenu.level[0].width-2 oCMenu.level[1].height=22 oCMenu.level[1].regClass="clLevel1" oCMenu.level[1].overClass="clLevel1over" oCMenu.level[1].borderX=1 oCMenu.level[1].borderY=1 oCMenu.level[1].align="right" oCMenu.level[1].offsetX=-(oCMenu.level[0].width-2)/2+20 oCMenu.level[1].offsetY=0 oCMenu.level[1].borderClass="clLevel1border" //oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Fade(duration=0.5)" oCMenu.level[0].slidepx=5 oCMenu.level[0].slidetim=25 /****************************************** Menu item creation: myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) *************************************/ oCMenu.makeMenu('top0','','Home','http://www.natinstore.com/index.asp?contentid=46','',60) /* oCMenu.makeMenu('top1','','About NIS','http://www.natinstore.com/about.asp?contentid=3','',90) oCMenu.makeMenu('sub30','top1','NIS Six Sigma Process Management','http://www.natinstore.com/about.asp?contentid=118') oCMenu.makeMenu('sub31','top1','NIS Organization Structure','http://www.natinstore.com/about.asp?contentid=112') oCMenu.makeMenu('sub32','top1','NIS Case Studies','http://www.natinstore.com/case_studies.asp?contentid=71') oCMenu.makeMenu('sub33','top1','NIS Retail Touchpoints','http://www.natinstore.com/clients.asp?contentid=52') oCMenu.makeMenu('sub34','top1','NIS Technology Partners','http://www.natinstore.com/about.asp?contentid=117') oCMenu.makeMenu('sub35','top1','NIS FAQ\'s','http://www.natinstore.com/faq.asp?contentid=70') oCMenu.makeMenu('top2','','Our Services','','',120) oCMenu.makeMenu('sub850','top2','Merchandising','http://www.natinstore.com/merchandising.asp?contentid=50') oCMenu.makeMenu('sub851','top2','Retail Intelligence','http://www.natinstore.com/retail_data.asp?contentid=48') oCMenu.makeMenu('sub852','top2','Experiential Marketing','http://www.natinstore.com/sales_training.asp?contentid=51') oCMenu.makeMenu('sub853','top2','Sales Training','http://www.natinstore.com/sales_training.asp?contentid=109') oCMenu.makeMenu('sub854','top2','ISO Certified Fulfillment','http://www.natinstore.com/logistics.asp?contentid=49') oCMenu.makeMenu('sub855','top2','Mystery Shopping','http://www.natinstore.com/retail_data.asp?contentid=103') oCMenu.makeMenu('sub856','top2','Call Center ','http://www.natinstore.com/retail_data.asp?contentid=104') oCMenu.makeMenu('sub857','top2','Technical Services','http://www.natinstore.com/merchandising.asp?contentid=106') oCMenu.makeMenu('sub858','top2','Human Resource Solutions','http://www.natinstore.com/merchandising.asp?contentid=107') */ oCMenu.makeMenu('top3','','Contact Us','http://www.natinstore.com/contact.asp?contentid=53','',100) oCMenu.makeMenu('top4','','Career Opportunities','http://nationalinstore.hodesiq.com/job_start.asp','',200) oCMenu.makeMenu('top5','','Field Representative Opportunities','http://nationalinstore.hodesiq.com/merchandising_opps.asp','',280) //Leave this line - it constructs the menu oCMenu.construct()