//label	The label of the menu -- defaults to "menuLabel" + index
// 	mw		Menu width in pixels
// 	mh		Menu item height in pixels
// 	fnt		Font family used in the menu -- defaults to "arial,helvetica,verdana,sans-serif"
// 	fs		Font size used in the menu -- defaults to 12 point
//	fclr	Font color -- defaults to black
//  fhclr	Font highlight color -- defaults to white
//  bg		Menu item's background color -- defaults to light gray (#cccccc)
//	bgh		Menu's background hilight color -- defaults to blue (#000084)
//
//function Menu(label, Menu width, Menu height, Font family, Font size, Font color, Font highlight color, Menu background color, Menu's background hilight color)
function fwLoadMenus()
 {
  if (window.fw_menu_0) return;
  // Program Office 
	
window.fw_menu_1 = new Menu("Who we are",190,22,"verdana, Arial, Helvetica, sans-serif",11,"#FFFFFF","#4E3CB8","#3734B3","#E6BC3C");
	fw_menu_1.addMenuItem("Academic and Policy Board","location='whoweare_academic.html'");
	fw_menu_1.addMenuItem("People","location='whoweare_people.html'");	
	fw_menu_1.fontWeight="normal"; //font weight for bold/normal 	   
	fw_menu_1.hideOnMouseOut=true;
	//fw_menu_0.writeMenus(); 
	
window.fw_menu_2 = new Menu("Our Partners",250,22,"verdana, Arial, Helvetica, sans-serif",11,"#FFFFFF","#4E3CB8","#3734B3","#E6BC3C");
	fw_menu_2.addMenuItem("Our Partners","location='our_partners.html'");
	fw_menu_2.addMenuItem("Sponsorship Opportunities","location='our_partners_sponsorship.html'");	
	fw_menu_2.fontWeight="normal"; //font weight for bold/normal 	   
	fw_menu_2.hideOnMouseOut=true;
	//fw_menu_2.writeMenus(); 
	
window.fw_menu_3 = new Menu("Programs",250,22,"verdana, Arial, Helvetica, sans-serif",11,"#FFFFFF","#4E3CB8","#3734B3","#E6BC3C");
	  fw_menu_3.addMenuItem("Overview","location='programs_overview.html'");
	  fw_menu_3.addMenuItem("Improving Macroeconomic Performance","location='programs_improving.html'");
	  fw_menu_3.addMenuItem("Strengthening Economic Cooperation","location='programs_strength.html'");	
	  fw_menu_3.fontWeight="normal"; //font weight for bold/normal  
	  fw_menu_3.hideOnMouseOut=true; 
	 // //fw_menu_3.writeMenus(); 
	  
	window.fw_menu_4 = new Menu("Events",100,22,"verdana, Arial, Helvetica, sans-serif",11,"#FFFFFF","#4E3CB8","#3734B3","#E6BC3C");
	  fw_menu_4.addMenuItem("Upcoming","location='upcoming_events.html'");
	  fw_menu_4.addMenuItem("Recent","location='recent_events.html'");   
	  fw_menu_4.fontWeight="normal"; //font weight for bold/normal  
	  fw_menu_4.hideOnMouseOut=true;
      fw_menu_4.writeMenus(); 
      
window.fw_menu_5 = new Menu("Press",250,22,"verdana, Arial, Helvetica, sans-serif",11,"#FFFFFF","#4E3CB8","#3734B3","#E6BC3C");
	  fw_menu_5.addMenuItem("News","location='news.html'");
	  fw_menu_5.addMenuItem("Media Centre","location='media_centre.html'");
	  fw_menu_5.fontWeight="normal"; //font weight for bold/normal  
	  fw_menu_5.hideOnMouseOut=true; 
	 // //fw_menu_5.writeMenus(); 

	}
