if (TransMenu.isSupported()) {

	var ms = new TransMenuSet(TransMenu.direction.down, 1, 0, TransMenu.reference.bottomLeft);

	var menu1 = ms.addMenu(document.getElementById("home"));
	menu1.addItem("Why Natural Gas?", "why-natural-gas.php");
	menu1.addItem("News and Notices", "news-and-notices.php");
	menu1.addItem("Customer Testimonials", "customer-testimonials.php");
	menu1.addItem("Promotions", "promotions.php");
	menu1.addItem("Employment", "employment.php");
	menu1.addItem("About Us", "about-us.php");

	var menu2 = ms.addMenu(document.getElementById("residential"));
	menu2.addItem("Residential Users", "residential-users.php"); 
	menu2.addItem("Coverage Area", "coverage-area.php"); 
	menu2.addItem("Incentive Programs", "incentive-programs.php"); 
	menu2.addItem("Important Notices", "important-notices.php"); 
	menu2.addItem("The Changeover Process", "the-changeover-process.php"); 

	var menu3 = ms.addMenu(document.getElementById("business"));
	menu3.addItem("Business Users", "business-users.php"); 
	menu3.addItem("Coverage Area", "coverage-area.php"); 
	menu3.addItem("Incentive Programs", "incentive-programs.php"); 
	menu3.addItem("Important Notices", "important-notices.php"); 
	menu3.addItem("The Changeover Process", "the-changeover-process.php"); 
	
	var menu4 = ms.addMenu(document.getElementById("rates"));
	menu4.addItem("Rate Plan","rate-plan.php");
	
	var menu5 = ms.addMenu(document.getElementById("faqs"));
	menu5.addItem("Customer Billing Questions and Answers","customer-billing-questions-and-answers.php");
	menu5.addItem("Natural Gas Questions and Answers","natural-gas-questions-and-answers.php");
	menu5.addItem("Safety Questions and Answers","safety-questions-and-answers.php");
	//menu5.addItem("Carbon Monoxide","carbon-monoxide.php");
	
	var menu6 = ms.addMenu(document.getElementById("tariff"));
	menu6.addItem("Tariffs","tariffs.php");

	TransMenu.renderAll();
}

