			/******************* MENU NUMBER 1 **********************************/
			
			/*** 
			This is the menu creation code - place it right after you body tag
			Feel free to add this to a stand-alone js file and link it to your page.
			**/
			
			//Menu object creation
			oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname
			
			//Menu properties   
			oCMenu.pxBetween=0
			oCMenu.fromLeft=0 
			oCMenu.fromTop=107  
			oCMenu.rows=0 
			oCMenu.menuPlacement="left"
			
			oCMenu.offlineRoot="" 
			oCMenu.onlineRoot="" 
			oCMenu.resizeCheck=1 
			oCMenu.wait=1000 
			oCMenu.fillImg="/templatedateien/bilder/cm_fill.gif"
			oCMenu.zIndex=0
			
			//Background bar properties
			oCMenu.useBar=0
			oCMenu.barWidth="menu"
			oCMenu.barHeight="menu" 
			oCMenu.barClass="clBar"
			oCMenu.barX="menu"
			oCMenu.barY="menu"
			oCMenu.barBorderX=0
			oCMenu.barBorderY=0
			oCMenu.barBorderClass=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=150
			oCMenu.level[0].height=20
			oCMenu.level[0].regClass="clLevel0"
			oCMenu.level[0].overClass="clLevel0over"
			oCMenu.level[0].borderX=0
			oCMenu.level[0].borderY=1
			oCMenu.level[0].borderClass="clLevel0border"
			oCMenu.level[0].offsetX=151 
			oCMenu.level[0].offsetY=-22
			oCMenu.level[0].rows=0
			oCMenu.level[0].arrow="/templatedateien/bilder/pfeil_rechts_weiss.gif"
			oCMenu.level[0].arrowWidth=8
			oCMenu.level[0].arrowHeight=10
			oCMenu.level[0].align="bottom" 
			oCMenu.level[0].roundBorder=0
			
			oCMenu.level[1]=new cm_makeLevel() //Add this for each new level
			
			
			/******************************************
			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','','WeSchu-Shop','http://www.weschu-shop.de')
			oCMenu.makeMenu('top1','','Seminare','#')
				oCMenu.makeMenu('sub10','top1','Seminarinformationen','/seminare/index_seminare.php')
				oCMenu.makeMenu('sub11','top1','Seminarinhalte','/seminare/seminarinhalte.php')
				oCMenu.makeMenu('sub12','top1','Seminartermine','/seminare/seminartermine.php')
				oCMenu.makeMenu('sub13','top1','Seminarorte','/seminare/seminarorte.php')
				oCMenu.makeMenu('sub14','top1','Referenten','/seminare/referenten.php')
			oCMenu.makeMenu('top2','','Event-Equipment','#')
				oCMenu.makeMenu('sub20','top2','&Uumlbersicht','/vermietung/index_vermietung.php')
				oCMenu.makeMenu('sub21','top2','Aktionsanh&auml;nger I','/vermietung/anhaenger_gross.php')
				oCMenu.makeMenu('sub22','top2','Aktionsanh&auml;nger II','/vermietung/anhaenger_klein.php')
				oCMenu.makeMenu('sub23','top2','Fahrradsimulation','/vermietung/fahrradsimulation.php')
				oCMenu.makeMenu('sub24','top2','Formel 1 Bolide','/vermietung/formel1bolide.php')
				oCMenu.makeMenu('sub25','top2','Alkoholtester','/vermietung/alkoholtester.php')
				oCMenu.makeMenu('sub26','top2','Info-Mobil','/vermietung/infomobil.php')
				oCMenu.makeMenu('sub27','top2','Simulationssitz','/vermietung/simulationssitz.php')
				oCMenu.makeMenu('sub28','top2','Zelte','/vermietung/zelte.php')
				oCMenu.makeMenu('sub29','top2','Lautsprecheranlage','/vermietung/lautsprecheranlage.php')
			oCMenu.makeMenu('top3','','Seminarr&auml;ume','#')
				oCMenu.makeMenu('sub30','top3','&Uuml;bersicht','/seminarraeume/index_seminarraeume.php')
				oCMenu.makeMenu('sub31','top3','Raum&uuml;bersicht','/seminarraeume/raumuebersicht.php')
				oCMenu.makeMenu('sub32','top3','Bestuhlungsbeispiele<br>Einzelr&auml;ume','/seminarraeume/bestuhlungsbeispiele_und_preise_einzelraeume.php','','','35')
				oCMenu.makeMenu('sub33','top3','Bestuhlungsbeispiele<br>Saal','/seminarraeume/bestuhlungsbeispiele_und_preise_saal.php','','','35')
				oCMenu.makeMenu('sub34','top3','Tagungstechnik','/seminarraeume/tagungstechnik.php')
				oCMenu.makeMenu('sub35','top3','Bewirtung','/seminarraeume/bewirtung.php')
			oCMenu.makeMenu('top4','','Kontakt','#')
				oCMenu.makeMenu('sub40','top4','Kontakt','/kontakt/kontakt.php')
				oCMenu.makeMenu('sub41','top4','Impressum','/kontakt/impressum.php')
				oCMenu.makeMenu('sub42','top4','Disclaimer','/kontakt/disclaimer.php')
			
			
			//Leave this line - it constructs the menu
			oCMenu.construct()		
