// JavaScript Document
//document.onselectstart=function(){return false}
//Menu object creation
mymenu=new makeCM('mymenu'); //Making the menu object.Argument:menuname

//Menu properties   
mymenu.pxBetween=10;
mymenu.fromLeft=250; 
mymenu.fromTop=9;   
mymenu.rows=1; 
mymenu.menuPlacement='left';
                                                             
mymenu.offlineRoot=''; 
mymenu.onlineRoot=''; 
mymenu.resizeCheck=1; 
mymenu.wait=300; 
mymenu.fillImg='/images/spacer.gif';
mymenu.zIndex=1;

//Background bar properties
mymenu.useBar=0;
mymenu.barWidth='100%';
mymenu.barHeight=15; 
mymenu.barClass='clBar';
mymenu.barX=215; 
mymenu.barY=7;
mymenu.barBorderX=0;
mymenu.barBorderY=1;
mymenu.barBorderClass='clBarBorder';

//Level properties - ALL properties have to be specified in level 0
mymenu.level[0]=new cm_makeLevel();  //Add this for each new level
mymenu.level[0].width=60;
mymenu.level[0].height=15; 
mymenu.level[0].regClass='clLevel0';
mymenu.level[0].overClass='clLevel0over';
mymenu.level[0].borderX=0;
mymenu.level[0].borderY=0;
mymenu.level[0].borderClass='clLevel0border';
mymenu.level[0].offsetX=35;						//menu x to the right
mymenu.level[0].offsetY=-1;
mymenu.level[0].rows=0;
mymenu.level[0].arrow='';
mymenu.level[0].arrowWidth=0;
mymenu.level[0].arrowHeight=0;
mymenu.level[0].align='bottom';					//submenu underneath nav


//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
mymenu.level[1]=new cm_makeLevel();  //Add this for each new level adding one.
mymenu.level[1].width=110;
mymenu.level[1].height=15;
mymenu.level[1].regClass='clLevel1';
mymenu.level[1].overClass='clLevel1over';
mymenu.level[1].borderX=2;
mymenu.level[1].borderY=2;
mymenu.level[1].borderClass='clLevel1border'; 
mymenu.level[1].offsetX=-1;
mymenu.level[1].offsetY=5;
mymenu.level[1].arrow='';
mymenu.level[1].arrowWidth=0;
mymenu.level[1].arrowHeight=0;
mymenu.level[1].align='right';

//EXAMPLE SUB LEVEL[2] PROPERTIES - You have to specify the properties you want different from LEVEL[1] OR LEVEL[0] - If you want all items to look the same just remove this
//mymenu.level[2]=new cm_makeLevel();   //Add this for each new level adding one.
//mymenu.level[2].width=130;
//mymenu.level[2].regClass='clLevel2';
//mymenu.level[2].overClass='clLevel2over';
//mymenu.level[2].borderClass='clLevel2border';



//Menu item creation:
//myCoolMenu.makeMenu(name,parent_name,text,link,target,width,height,regImage,overImage,regClass,overClass,align,rows,nolink,onclick,onmouseover,onmouseout) 

mymenu.makeMenu('m0','','Home','/index.htm','',42);

mymenu.makeMenu('m1','','Our&nbsp;Properties','','',102);
  mymenu.makeMenu('m10','m1','Madison&nbsp;Metro','/properties/madison.aspx','',125,'','','','','');
  	mymenu.makeMenu('m100','m10','High&nbsp;Point&nbsp;Plaza','/properties/madison/hpp.html','',180,'','','','','');
  	mymenu.makeMenu('m101','m10','High&nbsp;Point&nbsp;Office&nbsp;Center','/properties/madison/hpoc.html','',180,'','','','','');
  	mymenu.makeMenu('m103','m10','Northridge&nbsp;Plaza','/properties/madison/nrp.html','',180,'','','','','');
mymenu.makeMenu('m11','m1','Milwaukee&nbsp;Metro','/properties/milwaukee.aspx','',125,'','','','','');
	mymenu.makeMenu('m110','m11','735&nbsp;North&nbsp;Water&nbsp;Street','/properties/milwaukee/nws.html','',180,'','','','','');
	mymenu.makeMenu('m111','m11','Germantown&nbsp;Marketplace','/properties/milwaukee/gtm.html','',180,'','','','','');
mymenu.makeMenu('m12','m1','Wausau','/properties/wausau.aspx','',125,'','','','','');
	mymenu.makeMenu('m120','m12','Heinemann&nbsp;Building','/properties/wausau/hb.html','',220,'','','','','');
	mymenu.makeMenu('m121','m12','Gateway&nbsp;at&nbsp;Washington&nbsp;Square','/properties/wausau/jsi.html','',220,'','','','','');
	mymenu.makeMenu('m122','m12','Washington&nbsp;Square','/properties/wausau/ws.html','',220,'','','','','');
	mymenu.makeMenu('m123','m12','Third&nbsp;Street&nbsp;Shops','/properties/wausau/tss.html','',220,'','','','','');
	mymenu.makeMenu('m124','m12','Depot Building','/properties/wausau/d.html','',220,'','','','','');
	//mymenu.makeMenu('m125','m12','Plaza&nbsp;Mall','/properties/wausau/pm.html','',180,'','','','','');
mymenu.makeMenu('m13','m1','Oshkosh','/properties/oshkosh.aspx','',125,'','','','','')
	mymenu.makeMenu('m130','m13','Webster Building','/properties/oshkosh/w.html','',180,'','','','','');
	mymenu.makeMenu('m131','m13','Tower&nbsp;West','/properties/oshkosh/tw.html','',180,'','','','','');
mymenu.makeMenu('m14','m1','Central&nbsp;Wisconsin','/properties/central.aspx','',125,'','','','','');
	mymenu.makeMenu('m140','m14','Founder&#8217;s&nbsp;Square','/properties/central/fs.html','',180,'','','','','');
	mymenu.makeMenu('m141','m14','Compass&nbsp;Gateway','/properties/central/cg.html','',180,'','','','','');
	//mymenu.makeMenu('m142','m14','Hudson&nbsp;Grill','/properties/central/hg.html','',180,'','','','','');

mymenu.makeMenu('m2','','Our&nbsp;Services','/tennant/services.aspx','',95);

mymenu.makeMenu('m3','','In&nbsp;the&nbsp;News','/news/news1.aspx','',88);

mymenu.makeMenu('m4','','Contact','/contact/contact.aspx','',65);

//constructs the menu
mymenu.construct();