//Menu object creation
oLeftCMenu=new makeCM("oLeftCMenu") //Making the menu object. Argument: menuname

oLeftCMenu.frames = 0

//Menu properties   
oLeftCMenu.pxBetween=0
oLeftCMenu.positionType="relative"
oLeftCMenu.containerId="clLeftMenuContainer"
oLeftCMenu.fromLeft=0
oLeftCMenu.fromTop=0
oLeftCMenu.rows=0 
oLeftCMenu.menuPlacement="left"
                                                             
oLeftCMenu.offlineRoot="" 
oLeftCMenu.onlineRoot="" 
oLeftCMenu.resizeCheck=1 
oLeftCMenu.wait=100 
oLeftCMenu.fillImg="sources/coolmenus/cm_fill.gif"
oLeftCMenu.zIndex=0

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

//Level properties - ALL properties have to be spesified in level 0
oLeftCMenu.level[0]=new cm_makeLevel() //Add this for each new level
oLeftCMenu.level[0].width=169
oLeftCMenu.level[0].height=37 
oLeftCMenu.level[0].regClass="cl_menu"
oLeftCMenu.level[0].overClass="cl_menu_over"
oLeftCMenu.level[0].borderX=0
oLeftCMenu.level[0].borderY=0
oLeftCMenu.level[0].borderClass="cl_menu_border"
oLeftCMenu.level[0].offsetX=0
oLeftCMenu.level[0].offsetY=0
oLeftCMenu.level[0].rows=0
oLeftCMenu.level[0].arrow=0
oLeftCMenu.level[0].arrowWidth=0
oLeftCMenu.level[0].arrowHeight=0
oLeftCMenu.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
oLeftCMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oLeftCMenu.level[1].width=151
oLeftCMenu.level[1].align="bottom"
oLeftCMenu.level[1].offsetX=0
oLeftCMenu.level[1].offsetY=0


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/

oLeftCMenu.makeMenu('overview','','','overview.html','', 169, 37, 'images/menu/overview_off.jpg', 'images/menu/overview_on.jpg');

oLeftCMenu.makeMenu('services','','','services.html','', 169, 39, 'images/menu/services_off.jpg', 'images/menu/services_on.jpg');

oLeftCMenu.makeMenu('profiles','','','profiles.html','', 169, 36, 'images/menu/profiles_off.jpg', 'images/menu/profiles_on.jpg');

oLeftCMenu.makeMenu('projects','','','','', 169, 38, 'images/menu/projects_off.jpg', 'images/menu/projects_on.jpg');
	oLeftCMenu.makeMenu('k12_education','projects','','projects_k12_education.html','', 151, 38, 'images/menu/k12_education_off.jpg', 'images/menu/k12_education_on.jpg');
	oLeftCMenu.makeMenu('higher_education','projects','','projects_higher_education.html','', 151, 37, 'images/menu/higher_education_off.jpg', 'images/menu/higher_education_on.jpg');
	oLeftCMenu.makeMenu('health_care','projects','','projects_health_care.html','', 151, 38, 'images/menu/health_care_off.jpg', 'images/menu/health_care_on.jpg');
	oLeftCMenu.makeMenu('municipal','projects','','projects_municipal.html','', 151, 37, 'images/menu/municipal_off.jpg', 'images/menu/municipal_on.jpg');
	oLeftCMenu.makeMenu('residential','projects','','projects_residential.html','', 151, 37, 'images/menu/residential_off.jpg', 'images/menu/residential_on.jpg');

oLeftCMenu.makeMenu('news_and_events','','','news_and_events.html','', 169, 37, 'images/menu/news_and_events_off.jpg', 'images/menu/news_and_events_on.jpg');

oLeftCMenu.makeMenu('careers','','','careers.html','', 169, 38, 'images/menu/careers_off.jpg', 'images/menu/careers_on.jpg');

oLeftCMenu.makeMenu('links','','','links.html','', 169, 37, 'images/menu/links_off.jpg', 'images/menu/links_on.jpg');

oLeftCMenu.makeMenu('contacts','','','contacts.html','', 169, 37, 'images/menu/contacts_off.jpg', 'images/menu/contacts_on.jpg');

oLeftCMenu.makeMenu('newsletter','','','newsletter.html','', 169, 37, 'images/menu/newsletter_off.jpg', 'images/menu/newsletter_on.jpg');
