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

ifco.frames = 0

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

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

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


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
ifco.makeMenu('top2','','Container Logistics + Pallet Recycling','http://www.ifcosystems.com/', '_blank')


//Leave this line - it constructs the menu
ifco.construct()		
//-->
