function init() {
	if (TransMenu.isSupported()) {
		TransMenu.initialize();
		menu_OurOffice.onactivate = function() {document.getElementById('OurOffice').className = 'hover'; };
		menu_OurOffice.ondeactivate = function() {document.getElementById('OurOffice').className = ''; };
		menu_AskDrPerdue.onactivate = function() {document.getElementById('AskDrPerdue').className = 'hover'; };
		menu_AskDrPerdue.ondeactivate = function() {document.getElementById('AskDrPerdue').className = ''; };
		menu_ForParents.onactivate = function() {document.getElementById('ForParents').className = 'hover'; };
		menu_ForParents.ondeactivate = function() {document.getElementById('ForParents').className = ''; };

	}
}

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

	var menu_OurOffice = ms.addMenu(document.getElementById("OurOffice"));
		menu_OurOffice.addItem("Location","http://healthyteeth4kids.com/Location.htm","");
		menu_OurOffice.addItem("Staff","http://healthyteeth4kids.com/Staff.htm","");
		var submenu_Staff = menu_OurOffice.addMenu(menu_OurOffice.items[1]);
			submenu_Staff.addItem("Chelcy","http://healthyteeth4kids.com/Chelcy.htm","");
			submenu_Staff.addItem("Chris","http://healthyteeth4kids.com/Chris.htm","");
			submenu_Staff.addItem("Dr. Perdue","http://healthyteeth4kids.com/DrPerdue.htm","");
			submenu_Staff.addItem("Leigha","http://healthyteeth4kids.com/Leigha.htm","");
			submenu_Staff.addItem("Melinda","http://healthyteeth4kids.com/Melinda.htm","");
			submenu_Staff.addItem("Mellisa","http://healthyteeth4kids.com/Mellisa.htm","");
			submenu_Staff.addItem("Melody","http://healthyteeth4kids.com/Melody.htm","");

	var menu_AskDrPerdue = ms.addMenu(document.getElementById("AskDrPerdue"));
		menu_AskDrPerdue.addItem("Healthy Teeth","http://healthyteeth4kids.com/HealthyTeeth.htm","");
		menu_AskDrPerdue.addItem("FAQs","http://healthyteeth4kids.com/FAQs.htm","");

	var menu_ForParents = ms.addMenu(document.getElementById("ForParents"));
		menu_ForParents.addItem("Our Policies","http://healthyteeth4kids.com/OurPolicies.htm","");
		menu_ForParents.addItem("Insurance Info","http://healthyteeth4kids.com/InsuranceInfo.htm","");

	TransMenu.renderAll();
}
