/***
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
menu=new makeCM("menu") //Making the menu object. Argument: menuname

menu.frames = 0

//Menu properties
menu.pxBetween=5
menu.fromLeft=10
menu.fromTop=70
menu.rows=1
menu.menuPlacement="left"

menu.onlineRoot="/"
menu.resizeCheck=1
menu.wait=1000
menu.fillImg="/js/cm_fill.gif"
menu.zIndex=0

//Background bar properties
menu.useBar=0

//Level properties - ALL properties have to be spesified in level 0
menu.level[0]=new cm_makeLevel() //Add this for each new level
menu.level[0].width=137
menu.level[0].height=35
menu.level[0].regClass="clLevel0"
menu.level[0].overClass="clLevel0over"
menu.level[0].borderX=0
menu.level[0].borderY=0
menu.level[0].borderClass="clLevel0border"
menu.level[0].offsetX=0
menu.level[0].offsetY=5
menu.level[0].rows=0
menu.level[0].arrow=0
menu.level[0].arrowWidth=0
menu.level[0].arrowHeight=0
menu.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
menu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
menu.level[1].width=menu.level[0].width-2
menu.level[1].width=137
menu.level[1].height=20
menu.level[1].regClass="clLevel1"
menu.level[1].overClass="clLevel1over"
menu.level[1].borderX=0
menu.level[1].borderY=0
menu.level[1].align="right"
menu.level[1].offsetX=-(menu.level[0].width-2)/5+47
menu.level[1].offsetY=-1
menu.level[1].borderClass="clLevel1border"
menu.level[1].arrow="js/fleche1.png"
menu.level[1].arrowWidth=16
menu.level[1].arrowHeight=16


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout)
*************************************/

menu.makeMenu('top0','','Présentation Institut','presentation.htm')

menu.makeMenu('top1','','Forums Femmes sans Frontières','fsf.htm')
	menu.makeMenu('sub10','top1','Description','fsf.htm')
	menu.makeMenu('sub11','top1','Bientôt chez vous','bientot.htm')

menu.makeMenu('top2','','Campagne d\'alphabétisation','alphabet.htm')

menu.makeMenu('top3','','Réseau solidarité femmes','femmes.htm')

menu.makeMenu('top4','','Cellule humanitaire','cellule.htm')
	menu.makeMenu('sub40','top4','Niger','niger.htm')
	menu.makeMenu('sub41','top4','Sénégal','senegal.htm')
	menu.makeMenu('sub42','top4','Roumanie','roumanie.htm')
	menu.makeMenu('sub43','top4','Les Comores','comores.htm')
	menu.makeMenu('sub44','top4','Kosovo','kosovo.htm')
	menu.makeMenu('sub45','top4','Afganistan','afganistan.htm')
	menu.makeMenu('sub46','top4','Géorgie','georgie.htm')
	menu.makeMenu('sub47','top4','Les actions diverses','actions.htm')

menu.makeMenu('top5','','Contact','contact.htm')

menu.makeMenu('top6','','Sponsors','sponsors.htm')

//Leave this line - it constructs the menu
menu.construct()
