//Menu object creation
oM=new makeCM("oM") 

//Making the menu object. Argument: menuname
oM.frames = 0

//Placement variables  
oM.pxBetween=0
oM.fromLeft=0
oM.fromTop=136   
oM.rows=1 
oM.menuPlacement="left"

//Background bar variables
oM.useBar=0
oM.barWidth="100%" 
oM.barHeight="menu" 
oM.barX=0
oM.barY="menu"
oM.barClass="clBar"
oM.barBorderX=0 
oM.barBorderY=0
 
//General variables                                                             
oM.offlineRoot="" 
oM.onlineRoot="http://www.injectaseal.de/english/"
oM.resizeCheck=0 
oM.wait=1000
oM.fillImg=""
oM.zIndex=0

//Level properties - ALL properties have to be spesified in level 0
oM.level[0]=new cm_makeLevel() 

//Add this for each new level
oM.level[0].width=0
oM.level[0].height=0 
oM.level[0].regClass="clT"
oM.level[0].overClass="clSover"
oM.level[0].borderX=1
oM.level[0].borderY=0
oM.level[0].borderClass="clB"
oM.level[0].offsetX=200
oM.level[0].offsetY=0
oM.level[0].rows=0
oM.level[0].arrow=0
oM.level[0].arrowWidth=0
oM.level[0].arrowHeight=0
oM.level[0].align="center"

//Menu item creation: myCoolMenu.makeMenu (name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
oM.makeMenu('m0','','Home','index.html','',154,22);
oM.makeMenu('m1','','Company','company/company.html','',150,22);
oM.makeMenu('m2','','Services','services.html','',150,22);
oM.makeMenu('m3','','Products','products/products.html','',150,22);
oM.makeMenu('m4','','Quality Management','qmanagement.html','',150,22);
oM.makeMenu('m5','','Contact','contact/contact.html','',150,22);

//Leave this line - it constructs the menu
oM.construct()	
