if (TransMenu.isSupported()) {
	var ms = new TransMenuSet(TransMenu.direction.right, 1, 0, TransMenu.reference.topRight);

//Health Menu
	var menu1 = ms.addMenu(document.getElementById("health"));
	menu1.addItem("Feminine Powers", "/health/feminine_powers.php"); 
	menu1.addItem("Meditation", "/health/meditation.php");
	menu1.addItem("Mental Focus", "/health/mental_focus.php"); 
	menu1.addItem("Powerful Stance", "/health/powerful_stance.php"); 
	menu1.addItem("Wellness", "/health/wellness.php");

	//Configuration Settings
	TransMenu.backgroundColor = "#FF6666";

	TransMenu.renderAll();
}