function windowOnload() {
	
	/*
	* To set the colors of the menu edit the CSS files.
	* This menu uses 2 CSS files, the default file menu_def.css
	* - which is always loaded - and menu_abs.css
	*/
	
	/*
		The value used for label height is also used in the tag that generates 
		the haviland menu on the left. It is used to calculate the position
		of the geokaart pic. o if it is changed here it should also be changed
		in the haviland template jsp.
	*/
	
	
  mnuMarker = cbeGetElementById('menuMarker').cbe;
  cbeMenu = new cbeDropdownMenu(
    mnuMarker.pageX(), mnuMarker.pageY(), // coord of first label
    200, 35,                               // label width and height
    195,                                  // box width
    18,                                   // item height
    2,                                    // item left padding    
    2									 // item right padding
  );
  window.cbe.addEventListener('resize', winResizeListener, false);
  
}