function _createMenu(selmenu)
{
//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

// addition for woodwing
if (selmenu) oCMenu.selmenu = selmenu

//Menu properties   
oCMenu.pxBetween=0
oCMenu.fromLeft=28
oCMenu.fromTop=10   
oCMenu.rows=1 
oCMenu.menuPlacement=0

oCMenu.offlineRoot="" 
oCMenu.onlineRoot="" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg=""
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=1
oCMenu.barWidth="menu"
oCMenu.barHeight="menu" 
oCMenu.barClass="clBar"
oCMenu.barX="menu"
oCMenu.barY="menu"
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=111
oCMenu.level[0].height=24
oCMenu.level[0].regClass="MenuItem"
oCMenu.level[0].overClass="MenuItemOver"
oCMenu.level[0].borderX=1
oCMenu.level[0].borderY=1
oCMenu.level[0].borderClass="MenuBorder"
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=24
oCMenu.level[0].rows=0

return oCMenu;
}

function createMenuObjects(selmenu){
/*** 
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.
**/
oCMenu = _createMenu(selmenu);
oCMenu.myMakeMenu('top0','','Waarom', 'waarom.htm')
//	oCMenu.myMakeMenu('sub01','top0','Identiteit','wie1.htm')
//	oCMenu.myMakeMenu('sub02','top0','Missie/Visie','wie2.htm')
//	oCMenu.myMakeMenu('sub03','top0','Kernwaarden','wie3.htm')

oCMenu.myMakeMenu('top1','','Wat', 'wat.htm')
//	oCMenu.myMakeMenu('sub10','top1','Proper innoveren','wat1.htm')
//	oCMenu.myMakeMenu('sub11','top1','Cultuur/vernieuwing','wat2.htm')
//	oCMenu.myMakeMenu('sub12','top1','Proper coachen','wat3.htm')
	
oCMenu.myMakeMenu('top2','','Hoe', 'hoe.htm')
//	oCMenu.myMakeMenu('sub21','top2','Proper','hoe1.htm')
//	oCMenu.myMakeMenu('sub22','top2','Proper leren','hoe2.htm')

oCMenu.myMakeMenu('top3','','Wie','wie.htm')

oCMenu.myMakeMenu('top4','','Resultaat','resultaat.htm')

oCMenu.myMakeMenu('top5','','Contact','contact.htm')

oCMenu.myMakeMenu('top6','','Corporate','corporate.htm')

//Leave this line - it constructs the menu
oCMenu.construct()
}

function createENGMenuObjects(selmenu){
/*** 
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.
**/
oCMenu = _createMenu(selmenu);
oCMenu.myMakeMenu('top0','','Why', 'why.htm')
oCMenu.myMakeMenu('top1','','What', 'what.htm')
oCMenu.myMakeMenu('top2','','How', 'how.htm')
oCMenu.myMakeMenu('top3','','Who','who.htm')
oCMenu.myMakeMenu('top4','','Result','result.htm')
oCMenu.myMakeMenu('top5','','Contact','contacteng.htm')
oCMenu.myMakeMenu('top6','','Corporate','corporateeng.htm')

//Leave this line - it constructs the menu
oCMenu.construct()
}

/** addition, dont change
**/
makeCM.prototype.myMakeMenu=function(name,parent,txt,lnk) {
	if (name == this.selmenu)
		this.makeMenu(name, parent, txt, lnk, '','','','','', 'MenuItemSelected')
	else
		this.makeMenu(name, parent, txt, lnk)
}