/*** 
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
oCMenu.pxBetween=0
oCMenu.fromLeft=10
oCMenu.fromTop=98   
oCMenu.rows=0
oCMenu.menuPlacement=0                                                           
oCMenu.offlineRoot="file:///C|/www/ergocentric/" 
oCMenu.onlineRoot="/" 
oCMenu.resizeCheck=0 
oCMenu.wait=50 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=10

//Background bar properties
oCMenu.useBar=0

//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=208
oCMenu.level[0].height=20 
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=0
oCMenu.level[0].arrowWidth=0
oCMenu.level[0].arrowHeight=0
oCMenu.level[0].align="left"



/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
oCMenu.makeMenu('top0','','Accueil','chaise-ergonomique/index.html','')
oCMenu.makeMenu('top1','','Contactez-nous','chaise-ergonomique/contactez_nous.html')
oCMenu.makeMenu('top2','','Nouveaut&eacute;','chaise-ergonomique/nouveaute.html')
oCMenu.makeMenu('top3','','Environnement','chaise-ergonomique/environnement.html')
oCMenu.makeMenu('top4','','Entr&eacute;e distributeurs','chaise-ergonomique/script/useradmin/dealerLoginfrench.asp')
oCMenu.makeMenu('top5','','Chaises de bureau','chaise-ergonomique/chaises_bureau.html')
oCMenu.makeMenu('top6','','Chaises de spécialité','specialty')
oCMenu.makeMenu('top7','','Choix de recouvrements','fabric_options/index.html')
oCMenu.makeMenu('top8','','Garantie','chaise-ergonomique/garantie.html')
oCMenu.makeMenu('top9','','Guide d\'ajustements','chaise-ergonomique/adjustment_guide.html')
oCMenu.makeMenu('top10','','Catalogue','chaise-ergonomique/fre_catalogue/index.html')
	

//Leave this line - it constructs the menu
// - on ie5 for mac, menus must be created just before the </body> tag, in stdFooter.cfm
if(!(bw.ie5&&bw.mac)) oCMenu.construct() 


