if (TransMenu.isSupported()) {

	var ms = new TransMenuSet(TransMenu.direction.down, 0,3, TransMenu.reference.bottomLeft);

	var menu1 = ms.addMenu(document.getElementById("about"));
	menu1.addItem("&nbsp;Who we are?", "who.php"); 
	menu1.addItem("&nbsp;Our mission", "our_mission.php");
	menu1.addItem("&nbsp;Our competitive advantages", "our_advantage.php"); 
	menu1.addItem("&nbsp;Our clients", "clients.php"); 
	menu1.addItem("&nbsp;Sources of information", "links.php"); 
	menu1.addItem("&nbsp;News", "news.php"); 
	//menu1.addItem("&nbsp;Photo gallery", "#"); 
	//menu1.addItem("&nbsp;News and events", "news.php");  

	var menu2 = ms.addMenu(document.getElementById("loans"));
	menu2.addItem("&nbsp;General informations", "general.php"); 
	menu2.addItem("&nbsp;EF Standard", "ef_standard.php");
//	menu2.addItem("&nbsp;EF Rural", "ef_rural.php"); 
	menu2.addItem("&nbsp;EF Mining", "ef_mining.php"); 
//	menu2.addItem("&nbsp;EF Global", "ef_global.php"); 
	menu2.addItem("&nbsp;EF Short-Term", "ef_short_term.php"); 
	menu2.addItem("&nbsp;EF My Home", "ef_myhome.php"); 
//	menu2.addItem("&nbsp;Products in the pipeline", "ef_pipeline.php"); 
	
	var menu3 = ms.addMenu(document.getElementById("contact"));
	menu3.addItem("&nbsp;Online contact", "contact.php"); 
	menu3.addItem("&nbsp;Addresses and phone numbers", "contact_addresses.php");
	menu3.addItem("&nbsp;Pre-Application form", "pre_application.php"); 
	menu3.addItem("&nbsp;Career opportunities", "career.php"); 

	TransMenu.renderAll();
}

