/*** 
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
ocMenuPL=new makeCM("ocMenuPL") //Making the menu object. Argument: menuname

//Menu properties   
ocMenuPL.pxBetween=0
ocMenuPL.fromLeft=15
ocMenuPL.fromTop=130  
ocMenuPL.rows=0
ocMenuPL.menuPlacement=0
                                                             
ocMenuPL.offlineRoot="file://C|Temp/" 
ocMenuPL.onlineRoot="http://www.crocodilesystems.com/de/" 
ocMenuPL.resizeCheck=1 
ocMenuPL.wait=100
ocMenuPL.fillImg="cm_fill.gif"
ocMenuPL.zIndex=0

//Background bar properties
ocMenuPL.useBar=1
ocMenuPL.barWidth="menu"
ocMenuPL.barHeight="menu" 
ocMenuPL.barClass="clBar"
ocMenuPL.barX="menu"
ocMenuPL.barY="menu"
ocMenuPL.barBorderX=0
ocMenuPL.barBorderY=0
ocMenuPL.barBorderClass=""

//Level properties - ALL properties have to be spesified in level 0
ocMenuPL.level[0]=new cm_makeLevel() //Add this for each new level
ocMenuPL.level[0].width=100
ocMenuPL.level[0].height=18
ocMenuPL.level[0].regClass="cl2Level0"
ocMenuPL.level[0].overClass="cl2Level0over"
ocMenuPL.level[0].borderX=0
ocMenuPL.level[0].borderY=0
ocMenuPL.level[0].borderClass=0
ocMenuPL.level[0].offsetX=0
ocMenuPL.level[0].offsetY=0
ocMenuPL.level[0].rows=1
ocMenuPL.level[0].align="right"


//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
ocMenuPL.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
ocMenuPL.level[1].width=ocMenuPL.level[0].width-2
ocMenuPL.level[1].height=22
ocMenuPL.level[1].regClass="cl2Level1"
ocMenuPL.level[1].overClass="cl2Level1over"
ocMenuPL.level[1].style=""
ocMenuPL.level[1].align="right" 
ocMenuPL.level[1].offsetX=0
ocMenuPL.level[1].offsetY=0
ocMenuPL.level[1].borderClass="cl2Level1border"
ocMenuPL.level[1].borderX=0
ocMenuPL.level[1].borderY=0
ocMenuPL.level[1].rows=0
ocMenuPL.level[1].align="bottom" 

/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/

ocMenuPL.makeMenu('t01' ,'','&nbsp;<b>Palustris</b>','Palustris_Overview.htm','') ;
ocMenuPL.makeMenu('t02' ,'','&nbsp;&nbsp;&nbsp;Überblick','Palustris_Overview.htm');
ocMenuPL.makeMenu('t03' ,'','&nbsp;&nbsp;&nbsp;Funktionen','Palustris_Features.htm');
ocMenuPL.makeMenu('t04' ,'','&nbsp;&nbsp;&nbsp;Eigenschaften','Palustris_Appearance.htm');
ocMenuPL.makeMenu('t05' ,'','&nbsp;&nbsp;&nbsp;Plattform','Palustris_Platform.htm');
ocMenuPL.makeMenu('t06' ,'','&nbsp;&nbsp;&nbsp;Prinzipien','Palustris_Principles.htm');
ocMenuPL.makeMenu('t07' ,'','&nbsp;&nbsp;&nbsp;Support','Palustris_Training.htm');
ocMenuPL.makeMenu('t08' ,'','&nbsp;&nbsp;&nbsp;Demos','Palustris_Demos.htm');
ocMenuPL.makeMenu('t09' ,'','&nbsp;&nbsp;&nbsp;Preise','Palustris_Pricing.htm');
ocMenuPL.makeMenu('t10' ,'','&nbsp;&nbsp;&nbsp;Referenzen','Palustris_Testimonials.htm');

//Leave this line - it constructs the menu

ocMenuPL.construct()		
