
//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

oCMenu.frames=0

//Menu properties   
oCMenu.pxBetween=6
oCMenu.fromLeft=10 
oCMenu.fromTop=0   
oCMenu.rows=1 
oCMenu.menuPlacement="left"
                                                             
oCMenu.offlineRoot="file:///C|/temp/stb/scripts/coolmenus/" 
oCMenu.onlineRoot="../scripts/coolmenus/" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=1
oCMenu.barWidth="100%"
oCMenu.barHeight="menu" 
oCMenu.barClass="clBar"
oCMenu.barX=0 
oCMenu.barY=0
oCMenu.barBorderX=0
oCMenu.barBorderY=0
oCMenu.barBorderClass=""

//Level properties - ALL properties have to be specified in level 0
oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu.level[0].width=120
oCMenu.level[0].height=18 
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=0
oCMenu.level[0].borderY=0
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"

//dynamic effect (controllable for each level)
oCMenu.level[0].clippx=2
oCMenu.level[0].cliptim=2
//special animation filters (IE5.5+ only, controllable for each level)
oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Fade(duration=0.5)" 

//Other special animation filters (IE5.5+ only, controllable for each level)
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Wheel(duration=0.5,spokes=5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Barn(duration=0.5,orientation=horizontal)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Blinds(duration=0.5,bands=5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.CheckerBoard(duration=0.5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Fade(duration=0.5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.GradientWipe(duration=0.5,wipeStyle=0)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Iris(duration=0.5,irisStyle=STAR)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Iris(duration=0.5,irisStyle=CIRCLE)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Pixelate(duration=0.5,maxSquare=40)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Wheel(duration=0.5,spokes=5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.RandomDissolve(duration=0.5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Spiral(duration=0.5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Stretch(duration=0.5,stretchStyle=push)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Strips(duration=0.5,motion=rightdown)"


//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-4
oCMenu.level[1].height=18
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=2
oCMenu.level[1].borderY=2
oCMenu.level[1].align="right" 
oCMenu.level[1].offsetX=0
oCMenu.level[1].offsetY=0
oCMenu.level[1].borderClass="clLevel1border"
//dynamic effect
oCMenu.level[1].clippx=2
oCMenu.level[1].cliptim=2
//special animation filters
oCMenu.level[1].filter="progid:DXImageTransform.Microsoft.Fade(duration=0.5)" 


//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
oCMenu.level[2]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[2].width=165
oCMenu.level[2].height=18
oCMenu.level[2].offsetX=0
oCMenu.level[2].offsetY=0
oCMenu.level[2].regClass="clLevel2"
oCMenu.level[2].overClass="clLevel2over"
oCMenu.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) 
*************************************/
oCMenu.makeMenu('top0','','Main Index','http://reinhold.sedlacekfamily.com/sitemap.html','')
	oCMenu.makeMenu('sub00','top0','German','http://reinhold-sedlacek.homepage.t-online.de/index.htm')		
	oCMenu.makeMenu('sub01','top0','English','http://reinhold.sedlacekfamily.com')
		oCMenu.makeMenu('sub001','sub00','Main Site','http://reinhold-sedlacek.homepage.t-online.de/index.htm','',140,0)
		oCMenu.makeMenu('sub011','sub01','Splash Cover','http://reinhold.sedlacekfamily.com','',140,0)
		oCMenu.makeMenu('sub012','sub01','About Me','http://reinhold.sedlacekfamily.com/aboutme.html','',140,0)
		oCMenu.makeMenu('sub013','sub01','Music Association1','http://reinhold.sedlacekfamily.com/music-assoc-1.html','',140,0)
		oCMenu.makeMenu('sub014','sub01','Music Association2','http://reinhold.sedlacekfamily.com/music-assoc-2.html','',140,0)
		oCMenu.makeMenu('sub015','sub01','Music Association3','http://reinhold.sedlacekfamily.com/music-assoc-3.html','',140,0)
		oCMenu.makeMenu('sub016','sub01','Music Association4','http://reinhold.sedlacekfamily.com/3_penny_opera.html','',140,0)
		oCMenu.makeMenu('sub017','sub01','Heeresmusikkorp 300','http://reinhold.sedlacekfamily.com/hmk300.html','',140,0)
		oCMenu.makeMenu('sub018','sub01','HMK 5 - 300 Recordings','http://reinhold.sedlacekfamily.com/records/recordings.html','',140,0)
		oCMenu.makeMenu('sub019','sub01','Photo Gallery','http://reinhold.sedlacekfamily.com/photos/index.html','',140,0)
		oCMenu.makeMenu('sub020','sub01','Photos Meudt Hall','http://reinhold.sedlacekfamily.com/meudthall.html','',140,0)
		oCMenu.makeMenu('sub021','sub01','Photos Karneval 2006','http://reinhold.sedlacekfamily.com/karneval.html','',140,0)
		oCMenu.makeMenu('sub022','sub01','Links','http://www.reinhold-sedlacek.de/link2.htm','',140,0)
		oCMenu.makeMenu('sub023','sub01','Sitemap','http://reinhold.sedlacekfamily.com./sitemap.html','',140,0)
		oCMenu.makeMenu('sub024','sub01','Contact Me','mailto:Rsedlacek@t-online.de','',140,0)
			
			
oCMenu.makeMenu('top1','','Music Bands','')
	oCMenu.makeMenu('sub10','top1','Big Bands','http://reinhold.sedlacekfamily.com/bands/big-band.html')
	oCMenu.makeMenu('sub11','top1','Military Bands','http://reinhold.sedlacekfamily.com/const.html')
	oCMenu.makeMenu('sub12','top1','Color Guard','http://reinhold.sedlacekfamily.com/const.html')
	oCMenu.makeMenu('sub13','top1','Drum&Bugle Corp','http://reinhold.sedlacekfamily.com/const.html')
	oCMenu.makeMenu('sub14','top1','Brass Bands','http://reinhold.sedlacekfamily.com/const.html')
	oCMenu.makeMenu('sub15','top1','Concert Bands','http://reinhold.sedlacekfamily.com/const.html')
	oCMenu.makeMenu('sub16','top1','Wind Bands','http://reinhold.sedlacekfamily.com/const.html')
	oCMenu.makeMenu('sub17','top1','Wind Orchestras','http://reinhold.sedlacekfamily.com/const.html')
	oCMenu.makeMenu('sub18','top1','Symphonic*','http://reinhold.sedlacekfamily.com/const.html')
	
	
oCMenu.makeMenu('top2','','Music','')
	oCMenu.makeMenu('sub21','top2','Composers','http://reinhold.sedlacekfamily.com/composer_index.html')
	oCMenu.makeMenu('sub22','top2','Conductors','http://reinhold.sedlacekfamily.com/conductors_index.html')
	oCMenu.makeMenu('sub23','top2','Musicians','http://reinhold.sedlacekfamily.com/musician_index.html')
	oCMenu.makeMenu('sub24','top2','Opera','http://reinhold.sedlacekfamily.com/opera_index.html')
		oCMenu.makeMenu('sub0021','sub22','Conductors','http://reinhold.sedlacekfamily.com//conductor.html','',140,0)
	              oCMenu.makeMenu('sub0022','sub22','Lexicon Index','http://reinhold.sedlacekfamily.com/conductors-index.html','',140,0)


oCMenu.makeMenu('top3','','Instruments','')
	oCMenu.makeMenu('sub31','top3','History','http://reinhold.sedlacekfamily.com/instruments-1.html')	             
	oCMenu.makeMenu('sub32','top3','Classification 1','http://reinhold.sedlacekfamily.com/instruments-2.html')
	oCMenu.makeMenu('sub33','top3','Classification 2','reinhold.sedlacekfamily.com/instruments-3.html')
	oCMenu.makeMenu('sub34','top3','How they work.','http://reinhold.sedlacekfamily.com/instruments-4.html')
	oCMenu.makeMenu('sub35','top3','Mouthpieces','http://reinhold.sedlacekfamily.com/instruments-4b.html')
	oCMenu.makeMenu('sub36','top3','Reeds','http://reinhold.sedlacekfamily.com/instruments-4c.html')
 	oCMenu.makeMenu('sub37','top3','Valves','http://reinhold.sedlacekfamily.com/instruments-4d.html')            
	oCMenu.makeMenu('sub38','top3','Lexicon','http://reinhold.sedlacekfamily.com/instruments-lexicon.html')

oCMenu.makeMenu('top4','','Performances','')
	oCMenu.makeMenu('sub41','top4','Music Association 1','http://reinhold.sedlacekfamily.com/music-assoc-1.html')
	oCMenu.makeMenu('sub42','top4','Music Association 2','http://reinhold.sedlacekfamily.com/music-assoc-2.html')
	oCMenu.makeMenu('sub43','top4','Music Association 3','http://reinhold.sedlacekfamily.com/music-assoc-3.html')
	oCMenu.makeMenu('sub44','top4','Music Association 4','http://reinhold.sedlacekfamily.com/music-assoc-4.html')
		oCMenu.makeMenu('sub0041','sub41','Frühlingkonzert-02','http://reinhold.sedlacekfamily.com/news/Bergknappenkapelle-Landespolizeiorchester.html','',140,0) 
		oCMenu.makeMenu('sub0042','sub41','Adventskonzert','http://reinhold.sedlacekfamily.com//news/Bergknappenkapelle Niederschelden-Konzert.html','',140,0) 
		oCMenu.makeMenu('sub0043','sub41','675 Jahre Niederschelden','http://reinhold.sedlacekfamily.com/news/675 Jahre Niederschelden.html','',140,0) 
		oCMenu.makeMenu('sub0044','sub41','Frühlingkonzert-06','http://reinhold.sedlacekfamily.com/news/spring_06/fruhlingskonzert.htm','',140,0) 
		oCMenu.makeMenu('sub0045','sub41','Brass On!','http://reinhold.sedlacekfamily.com/brass_on/ferropolis.html','',140,0) 
		oCMenu.makeMenu('sub0046','sub42','Rehearsal-Fruesburg-06','http://reinhold.sedlacekfamily.com/freusburg/freusburg.html','',140,0) 
		oCMenu.makeMenu('sub0047','sub42','Frühlingkonzert-06','http://reinhold.sedlacekfamily.com/concerts/rudersdorf/april06/rudersdorf-spring-concert-06.htm','',140,0)
		oCMenu.makeMenu('sub0048','sub43','Rheinland Pfalz Tag -06','http://reinhold.sedlacekfamily.com/rheinland-pfalz-tag-06/rheinland-pfalz-tag-06.htm','',140,0)  
		oCMenu.makeMenu('sub0049','sub44','Die Dreigroschenoper ','http://reinhold.sedlacekfamily.com/3_penny_opera.html','',140,0)  

oCMenu.makeMenu('top5','','Music CorpsTravel','http://reinhold.sedlacekfamily.com/hmk300-travel.html')
	oCMenu.makeMenu('sub50','top5','HMK 300 Travel','http://reinhold.sedlacekfamily.com/hmk300-travel.html') 
	oCMenu.makeMenu('sub51','top5','National Anthem','http://reinhold.sedlacekfamily.com/anthem-index.html')
	oCMenu.makeMenu('sub52','top5','Maps','http://reinhold.sedlacekfamily.com/const.html')
	oCMenu.makeMenu('sub53','top5','Flags','http://reinhold.sedlacekfamily.com/const.html')
	oCMenu.makeMenu('sub54','top5','Coat of Arms','http://reinhold.sedlacekfamily.com/const.html')
	oCMenu.makeMenu('sub56','top5','Countries','http://reinhold.sedlacekfamily.com/const.html')
	oCMenu.makeMenu('sub57','top5','Cities','http://reinhold.sedlacekfamily.com/const.html')
	oCMenu.makeMenu('sub58','top5','Special Places','http://reinhold.sedlacekfamily.com/const.html')
	oCMenu.makeMenu('sub59','top5','Special Events','http://reinhold.sedlacekfamily.com/const.html')
	oCMenu.makeMenu('sub60','top5','Links','http://reinhold.sedlacekfamily.com/const.html')
		oCMenu.makeMenu('sub0186','sub58','NATO','http://reinhold.sedlacekfamily.com/const.html','',140,0)
		oCMenu.makeMenu('sub0187','sub58','SHAPE','http://reinhold.sedlacekfamily.com/const.html','',140,0)
	              oCMenu.makeMenu('sub0188','sub58','AFCENT','http://reinhold.sedlacekfamily.com/const.html','',140,0)
		oCMenu.makeMenu('sub0189','sub58','RHQAF North','http://reinhold.sedlacekfamily.com/const.html','',140,0)
		oCMenu.makeMenu('sub0190','sub59','4 Day March','http://reinhold.sedlacekfamily.com/const.html','',140,0)
	              oCMenu.makeMenu('sub0191','sub59','Festival of Military Bands','http://reinhold.sedlacekfamily.com/const.html','',140,0)
		oCMenu.makeMenu('sub0192','sub59','Military Tattoo','http://reinhold.sedlacekfamily.com/const.html','',140,0)
		oCMenu.makeMenu('sub0193','sub59','October Fest','http://reinhold.sedlacekfamily.com/const.html','',140,0)
//Leave this line - it constructs the menu 
oCMenu.construct()	
