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