//Menu object creation
oCMenu2=new makeCM("oCMenu2") //Making the menu object. Argument: menuname

//Menu properties
oCMenu2.pxBetween=5
oCMenu2.fromLeft=4
oCMenu2.fromTop=110
oCMenu2.rows=1
oCMenu2.menuPlacement="left"

oCMenu2.offlineRoot=""
oCMenu2.onlineRoot=""
oCMenu2.resizeCheck=1
oCMenu2.wait=1000
oCMenu2.fillImg="format/images/cm_fill.gif"
oCMenu2.zIndex=0

//Background bar properties
oCMenu2.useBar=0
oCMenu2.barWidth="100%"
oCMenu2.barHeight="menu"
oCMenu2.barClass=""
oCMenu2.barX=0
oCMenu2.barY=0
oCMenu2.barBorderX=0
oCMenu2.barBorderY=0
oCMenu2.barBorderClass=""

//Level properties - ALL properties have to be spesified in level 0
oCMenu2.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu2.level[0].width=100
oCMenu2.level[0].height=27
oCMenu2.level[0].regClass="cl2Level0"
oCMenu2.level[0].overClass="cl2Level0over"
oCMenu2.level[0].borderX=0
oCMenu2.level[0].borderY=0
oCMenu2.level[0].borderClass="cl2Level0border"
oCMenu2.level[0].offsetX=2
oCMenu2.level[0].offsetY=-1
oCMenu2.level[0].rows=0
oCMenu2.level[0].arrow=0
oCMenu2.level[0].arrowWidth=0
oCMenu2.level[0].arrowHeight=0
oCMenu2.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
oCMenu2.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu2.level[1].width= 125
oCMenu2.level[1].height=22
oCMenu2.level[1].regClass="cl2Level1"
oCMenu2.level[1].overClass="cl2Level1over"
oCMenu2.level[1].borderX=0
oCMenu2.level[1].borderY=1
oCMenu2.level[1].align="right"
oCMenu2.level[1].offsetX=0
oCMenu2.level[1].offsetY=-1
oCMenu2.level[1].borderClass="cl2Level1border"
oCMenu2.level[1].arrow="format/images/menu_arrow_blue.gif"
oCMenu2.level[1].arrowWidth=15
oCMenu2.level[1].arrowHeight=20
   
oCMenu2.makeMenu('top0','','Startseite','index1.html','','202')
oCMenu2.makeMenu('top1','','Profil/Kompetenz','','','')
oCMenu2.makeMenu('sub10','top1','Pondea - Die Brücke zum Kapitalmarkt','mezzanine/pondea_wir_bauen_bruecken_zum_kapitalmarkt.html','','220')
oCMenu2.makeMenu('sub11','top1','Profil/Kompetenz','mezzanine/pondea_team.html','','220')
oCMenu2.makeMenu('top2','','Corporate Finance','','','')
oCMenu2.makeMenu('sub20','top2','Finanzierungsanlässe','','','190')
oCMenu2.makeMenu('sub200','sub20','Gründung','mezzanine/gruendung.html','','')
oCMenu2.makeMenu('sub201','sub20','Projektfinanzierung','mezzanine/projektfinanzierung.html','','')
oCMenu2.makeMenu('sub202','sub20','Wachstum','mezzanine/wachstum.html','','')
oCMenu2.makeMenu('sub203','sub20','Unternehmensnachfolge/MBO','mezzanine/unternehmensnachfolge.html','','')
oCMenu2.makeMenu('sub21','top2','Equity Story/Kapitalmarktfähigkeit','mezzanine/equitystory.html','','190')
oCMenu2.makeMenu('sub22','top2','Rating','mezzanine/rating.html','','190')
oCMenu2.makeMenu('top3','','Dienstleistungen','','','')
oCMenu2.makeMenu('sub31','top3','Leistungen Private Equity','mezzanine/leistungen_pe.html','','160')
oCMenu2.makeMenu('sub32','top3','Leistungen Private Placement','mezzanine/leistungen_pp.html','','160')
oCMenu2.makeMenu('top4','','Mezzanine-Kapital','mezzanine/mezzanine_ueberblick.html','','')
oCMenu2.makeMenu('top5','','Private Equity','mezzanine/private_equity.html','','')
oCMenu2.makeMenu('top6','','Infothek','','','')
oCMenu2.makeMenu('sub60','top6','Kontaktdaten','mezzanine/kontakt.html','','')
oCMenu2.makeMenu('sub61','top6','Kontaktformular','mezzanine/kontaktformular.html','','')
oCMenu2.makeMenu('sub62','top6','Anfahrt','mezzanine/anfahrt.html','','')
oCMenu2.makeMenu('sub63','top6','News','mezzanine/news.html','','')
oCMenu2.makeMenu('sub64','top6','Newsletter','mezzanine/newsletter.html','','')
oCMenu2.makeMenu('sub65','top6','Glossar','mezzanine/glossar.html','','')
oCMenu2.makeMenu('sub66','top6','Links','mezzanine/links.html','','')
oCMenu2.makeMenu('sub67','top6','Nutzungsbedingungen','mezzanine/nutzungsbedingungen.html','','')
oCMenu2.construct()

