/*** 
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
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

//Menu properties   
oCMenu.pxBetween=0
oCMenu.fromLeft=170 
oCMenu.fromTop=100   
oCMenu.rows=1 
oCMenu.menuPlacement="left"
                                                             
oCMenu.offlineRoot="" 
oCMenu.onlineRoot="/" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="images/cm_fill.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=0
oCMenu.barWidth="500"
oCMenu.barHeight="1" 
oCMenu.barClass="clBar"
oCMenu.barX=190
oCMenu.barY=103
oCMenu.barBorderX=0
oCMenu.barBorderY=0
oCMenu.barBorderClass=""

//Level properties - ALL properties have to be spesified in level 0
oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu.level[0].width=108
oCMenu.level[0].height=18 
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=1
oCMenu.level[0].borderY=1
oCMenu.level[0].borderClass="clLevel0border"
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=0
oCMenu.level[0].rows=0
oCMenu.level[0].arrow="images/menu_arrow.gif"
oCMenu.level[0].arrowWidth=5
oCMenu.level[0].arrowHeight=5
oCMenu.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
oCMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[1].offsetX=120
oCMenu.level[1].offsetY=-18
oCMenu.level[1].arrow="images/menu_arrow.gif"
oCMenu.level[1].arrowWidth=5
oCMenu.level[1].arrowHeight=5



/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
//Menu items
//Menu items
oCMenu.makeMenu('element0','','<CENTER>Home</CENTER>','index.html','','','','','','','','','','','','')
oCMenu.makeMenu('element1','','<CENTER>Services</CENTER>','services.html','','','','','','','','','','','','')
oCMenu.makeMenu('element2','element1','Business Insurance','commins.html','','120','','','','','','','','','','')
oCMenu.makeMenu('element4','element1','Personal Insurance','persins.html','','120','','','','','','','','','','')
oCMenu.makeMenu('element5','element1','Bonds','bonds.html','','120','','','','','','','','','','')
oCMenu.makeMenu('element3','element1','Benefits (Health/Life/Disability)','benefits.html','','120','30','','','','','','','','','')
oCMenu.makeMenu('specialty','element1','Specialty Programs','','','120','','','','','','','','','','')
oCMenu.makeMenu('specialty1','specialty','Apartment Owners/Managers','approg.html','','120','30','','','','','','','','','')
oCMenu.makeMenu('specialty2','specialty','Golf Car Dealers','gcprog.html','','120','','','','','','','','','','')
oCMenu.makeMenu('element6','','<CENTER>Resources</CENTER>','resources.html','','','','','','','','','','','','')
oCMenu.makeMenu('element7','element6','Insurance Carriers','carriers.html','','140','','','','','','','','','','')
oCMenu.makeMenu('element7a','element6','Insurance Industry Links','resources.html','','140','','','','','','','','','','')
oCMenu.makeMenu('element7b','element6','Professional Designations','resources.html#Designations','','140','','','','','','','','','','')
oCMenu.makeMenu('element7c','element6','Associations','resources.html#Affiliations','','140','','','','','','','','','','')
oCMenu.makeMenu('element8','','<CENTER>About</CENTER>','history.html','','','','','','','','','','','','')
//oCMenu.makeMenu('element9','element8','Contact Form','contact.html','','107','','','','','','','','','','')
oCMenu.makeMenu('element9','','<CENTER>Contact Us</CENTER>','empdir.html','','','','','','','','','','','','')


//Leave this line - it constructs the menu
oCMenu.construct()		
