			/*** 
			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
			menuAzienda=new makeCM("menuAzienda") //Making the menu object. Argument: menuname
			
			menuAzienda.frames = 0
			
			//Menu properties   
			menuAzienda.pxBetween=10
			menuAzienda.fromLeft=10 
			menuAzienda.fromTop=150   
			menuAzienda.rows=0
			menuAzienda.menuPlacement=0
			                                                             
			menuAzienda.offlineRoot="file:///Users/coolest/Desktop/Work/Clienti/Quamar/Quamar%20Web%20Site/web-content/" 
			menuAzienda.onlineRoot="" 
			menuAzienda.resizeCheck=1 
			menuAzienda.wait=500
			menuAzienda.fillImg="cm_fill.gif"
			menuAzienda.zIndex=10
			menuAzienda.openOnClick=1
			
			//Background bar properties
			menuAzienda.useBar=0
			menuAzienda.barWidth="100%"
			menuAzienda.barHeight="menu" 
			menuAzienda.barClass="clBar"
			menuAzienda.barX=160 
			menuAzienda.barY="menu"
			menuAzienda.barBorderX=0
			menuAzienda.barBorderY=0
			menuAzienda.barBorderClass=""
			
			//Level properties - ALL properties have to be spesified in level 0
			menuAzienda.level[0]=new cm_makeLevel() //Add this for each new level
			menuAzienda.level[0].width=290
			menuAzienda.level[0].height=32
			menuAzienda.level[0].regClass="clLevel0"
			menuAzienda.level[0].overClass="clLevel0over"
			menuAzienda.level[0].borderX=0
			menuAzienda.level[0].borderY=0
			menuAzienda.level[0].borderClass="clLevel0border"
			menuAzienda.level[0].offsetX=31
			menuAzienda.level[0].offsetY=-1
			menuAzienda.level[0].rows=0
			menuAzienda.level[0].arrow=0
			menuAzienda.level[0].arrowWidth=0
			menuAzienda.level[0].arrowHeight=0
			menuAzienda.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
			menuAzienda.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
			menuAzienda.level[1].width=menuAzienda.level[0].width-64
			menuAzienda.level[1].height=18
			menuAzienda.level[1].regClass="clLevel1"
			menuAzienda.level[1].overClass="clLevel1over"
			menuAzienda.level[1].borderX=1
			menuAzienda.level[1].borderY=1
			menuAzienda.level[1].offsetX=0
			menuAzienda.level[1].offsetY=0
			menuAzienda.level[1].borderClass="clLevel1border"
			menuAzienda.level[1].roundBorder=0			
