/*** 
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
about=new makeCM("about") //Making the menu object. Argument: menuname

//Menu properties   
about.pxBetween=30
about.fromLeft=0 
about.fromTop=181  
about.rows=0 
about.menuPlacement=0

about.offlineRoot="file:///C|/Documents and Settings/Sean/My Documents/SRS/web/rev3/public_html/" 
about.onlineRoot="/" 
about.resizeCheck=1 
about.wait=300 
about.fillImg="cm_fill.gif"
about.zIndex=0

//Background bar properties
about.useBar=0//1
about.barWidth="menu"
about.barHeight="menu" 
about.barClass="clBar"
about.barX="menu"
about.barY="menu"
about.barBorderX=0
about.barBorderY=0
about.barBorderClass=""

//Level properties - ALL properties have to be spesified in level 0
about.level[0]=new cm_makeLevel() //Add this for each new level
about.level[0].width=120
about.level[0].height=0 //25
about.level[0].regClass="clLevel0"
about.level[0].overClass="clLevel0over"
about.level[0].borderX=0 
about.level[0].borderY=0
about.level[0].borderClass=0
about.level[0].offsetX=0 
about.level[0].offsetY=0
about.level[0].rows=1
about.level[0].align="right" 


//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to spesify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
about.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
about.level[1].width=about.level[0].width-2
about.level[1].height=22
about.level[1].regClass="clLevel1"
about.level[1].overClass="clLevel1over"
about.level[1].style=""
about.level[1].align="right" 
about.level[1].offsetX=0
about.level[1].offsetY=0
about.level[1].borderClass="clLevel1border"
about.level[1].borderX=1 
about.level[1].borderY=1
about.level[1].rows=0
about.level[1].align="bottom" 