/**
 * menu_drn
 * Amardeep Singh, December 2004
 * Copyright (c) 2004 Milagro Interactive Technologies.
 *
 * based on fw_menu.js
 * John Ahlquist, October 2000
 * Copyright (c) 2000 Macromedia, Inc.
 */
function changeFont(obj,menu)
{
	if(activeMenu != "" ) restFont();
	activeMenu = obj;
	obj.style.fontWeight = "bolder";
	obj.style.color = "#FA6704";
//	restFont();
}

function restFont()
{
	if(activeMenu == "" ) return;
	obj = activeMenu;
	obj.style.fontWeight = "normal";
	obj.style.color = "#222222";
	activeMenu = "";
}

function fwLoadMenus() {
 if (window.fw_menu_0) return;
 
  window.fw_menu_1 = new Menu("root",150,15,"Arial",11,"#333333","#333333","#A6CBFB","#ffffff");
  fw_menu_1.addMenuItem("<a href='aboutus.php' style='text-decoration:none' class='pA'>- Chi siamo</a>");
  fw_menu_1.addMenuItem("<a href='aboutus.php#agc' style='text-decoration:none' class='pA'>- Una societą in crescita</a>");
  fw_menu_1.addMenuItem("<a href='aboutus.php#ms' style='text-decoration:none' class='pA'>- Qualitą dei servizi</a>");
  fw_menu_1.addMenuItem("<a href='team.php' style='text-decoration:none' class='pA'>- Staff</a>");
  fw_menu_1.hideOnMouseOut=true;
  
window.fw_menu_2 = new Menu("root",170,15,"Arial, Helvetica, sans-serif",11,"#333333","#333333","#A6CBFB","#ffffff");
  fw_menu_2.addMenuItem("<a href='expert_rural_dev.php' style='text-decoration:none' class='pA'>- Local and Rural Development</a>");
  fw_menu_2.addMenuItem("<a href='expert_food_security.php' style='text-decoration:none' class='pA'>- Food Security</a>");
  fw_menu_2.addMenuItem("<a href='expert_civil_society.php' style='text-decoration:none' class='pA'>- Government and Civil Society</a>");
  fw_menu_2.addMenuItem("<a href='expert_reg_integration.php' style='text-decoration:none' class='pA'>- Regional Integration</a>");
  fw_menu_2.addMenuItem("<a href='expert_dev_aid.php' style='text-decoration:none' class='pA'>- Development Aid</a>");
  fw_menu_2.hideOnMouseOut=true;
  
window.fw_menu_3 = new Menu("root",150,15,"Arial, Helvetica, sans-serif",11,"#333333","#333333","#A6CBFB","#ffffff");
  fw_menu_3.addMenuItem("<a href='jobs.php#up' style='text-decoration:none' class='pA'>- Nuove posizioni</a>");
    fw_menu_3.addMenuItem("<a href='jobs.php#pfod' style='text-decoration:none' class='pA'>- Profili per il nostro Roster</a>");
  fw_menu_3.hideOnMouseOut=true;
  fw_menu_3.writeMenus();
} // fwLoadMenus()
