<!--
/*** 
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
partipations=new makeCM("partipations") //Making the menu object. Argument: menuname

partipations.frames = 0

//Menu properties   
partipations.pxBetween=20
partipations.fromLeft=665 
partipations.fromTop=295   
partipations.rows=1
partipations.menuPlacement="left"
                                                             
partipations.offlineRoot="file:///C:/schoeller/" 
partipations.onlineRoot="/" 
partipations.resizeCheck=1 
partipations.wait=100
/* partipations.fillImg="cm_fill.gif" */
partipations.zIndex=2

//Background bar properties
partipations.useBar=0
partipations.barWidth="100%"
partipations.barHeight="menu" 
partipations.barClass=""
partipations.barX=0 
partipations.barY=0
partipations.barBorderX=0
partipations.barBorderY=0
partipations.barBorderClass=""

//Level properties - ALL properties have to be spesified in level 0
partipations.level[0]=new cm_makeLevel() //Add this for each new level
partipations.level[0].width=210
partipations.level[0].height=20 
partipations.level[0].regClass="clLevel03"
partipations.level[0].overClass="clLevel0over3"
partipations.level[0].borderX=0
partipations.level[0].borderY=0
partipations.level[0].borderClass="clLevel0border3"
partipations.level[0].offsetX=0
partipations.level[0].offsetY=0
partipations.level[0].rows=0
partipations.level[0].arrow=0
partipations.level[0].arrowWidth=0
partipations.level[0].arrowHeight=0
partipations.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
partipations.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
partipations.level[1].width=partipations.level[0].width
partipations.level[1].height=partipations.level[0].height+5
partipations.level[1].regClass="clLevel14"
partipations.level[1].overClass="clLevel1over4"
partipations.level[1].borderX=0
partipations.level[1].borderY=1
partipations.level[1].align="left" 
partipations.level[1].offsetX=-(partipations.level[0].width-2)/2+20
partipations.level[1].offsetY=0
partipations.level[1].borderClass="clLevel1border4"


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
//partipations.makeMenu('top2','','Pet Recyling + Energy Engineering','' ,'')
partipations.makeMenu('top2','','Energy Engineering','' ,'')
//partipations.makeMenu('sub01','top2','SCHOELLER PET RECYCLING SYSTEMS','http://schoeller-plast.com/recycling.htm','_blank')
//partipations.makeMenu('sub02','top2','OHL ENGINEERING','http://www.ohl-eng.com/','_blank')
partipations.makeMenu('sub01','top2','OVERVIEW SCHOELLER RENEWABLES','./download/renewables.pdf','_blank')
partipations.makeMenu('sub02','top2','OHL TECHNOLOGIES','http://www.ohl-av.de/','_blank')
//partipations.makeMenu('sub04','top2','OHL THERMOSOLAR POWER','http://www.schoeller.org/download/OHLSolarPower.pdf','_blank')
//Leave this line - it constructs the menu
partipations.construct()		
//-->
