
// set up drop downs anywhere in the body of the page. I think the bottom of the page is better.. 
// but you can experiment with effect on loadtime.
if (TransMenu.isSupported()) {

	// The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner
	// of the actuator from which to measure the offset positions above. Here we are saying we want the 
	// menu to appear directly below the bottom left corner of the actuator
	//==================================================================================================
	var ms = new TransMenuSet(TransMenu.direction.down, 1, 0, TransMenu.reference.bottomLeft);

	//==================================================================================================
	// create a dropdown menu
	//==================================================================================================
	// the first parameter should be the HTML element which will act actuator for the menu
	//==================================================================================================
	
		
		
	var menu2 = ms.addMenu(document.getElementById("about"));

	
		menu2.addItem("PCFA History", "PCFAhistory.php");	
		menu2.addItem("Our Vision and Mission", "OurVisionandMission.php");
		menu2.addItem("PCFA Partners Organization", "Partners.php");
	
	var menu3 = ms.addMenu(document.getElementById("features"));
	
		menu3.addItem("Featured Story", "FeaturesStory.php");
		menu3.addItem("Featured Sponsor", "featuredsponsor.php");
		
		
	var menu4 = ms.addMenu(document.getElementById("service"));
	
		menu4.addItem("Amerasian Program", "americianprogram.php");
				
		menu4.addItem("Education", "childSponsorship.php");
		
		menu4.addItem("Environmental", "AnnualReport.php");
	
		menu4.addItem("Fund Development", "AnnualReport.php");
		
		menu4.addItem("Medical", "AnnualReport.php");
	
		menu4.addItem("Be a Volunteer", "");
		var submenu1 = menu4.addMenu(menu4.items[5]); 
			submenu1.addItem("PCFA Philippines", "AnnualReport.php");
			submenu1.addItem("PCFA USA", "PCFAUSA.php");
			
		menu4.addItem("Other Help", "");
		var submenu1 = menu4.addMenu(menu4.items[6]); 
			submenu1.addItem("Join Our Escrip", "JoinEscrip.php");
			submenu1.addItem("Vihecle Donation Program", "vihecleDonation.php");
			submenu1.addItem("Wills and Bequest", "WillsandBequest.php");
			submenu1.addItem("Honorary and Memorial Gifts", "honoraryandMemorial.php");
			submenu1.addItem("Fund Raise for US Today", "Fundraiseus.php");
			
	var menu5 = ms.addMenu(document.getElementById("bids"));
	
		menu5.addItem("Send your Feedbacks", "feedback.php");
		menu5.addItem("Contact List", "ContactList.php");
		
	var menu6 = ms.addMenu(document.getElementById("corporation"));
	
		
		menu6.addItem("Term and Condition", "termcondition.php");
		menu6.addItem("PCFA Recognition, Awards and Affiliations", "awarrecognition.php");
	
	TransMenu.renderAll();
}

