if (TransMenu.isSupported()) {
	//==================================================================================================
	var ms = new TransMenuSet(TransMenu.direction.down, 0, 4, TransMenu.reference.bottomLeft);
	var menu1 = ms.addMenu(document.getElementById("products"));

	menu1.addItem("Our Profile", "profile.html"); 
	menu1.addItem("Client List", "clientlist.html"); 
	menu1.addItem("Testimonials", "testimonials.html"); 
	menu1.addItem("Our Links", "ourlinks.html"); 

//==================================================================================================

	var menu2 = ms.addMenu(document.getElementById("support"));
	menu2.addItem("Building Surveys", "buildingsurveys.html"); 
	menu2.addItem("Snag Lists", "snaglists.html"); 
	menu2.addItem("Defect Analysis", "defectanalysis.html");
	menu2.addItem("Reinstatement Valuations", "reinstatevaluations.html");
	menu2.addItem("Valuations", "valuations.html");
	menu2.addItem("Planning Applications", "planningaps.html"); 
	menu2.addItem("Development Monitoring", "developmentmonitoring.html"); 

	//==================================================================================================

	var menu3 = ms.addMenu(document.getElementById("education"));
	menu3.addItem("Pre Acquisition Surveys", "preacqsurveys.html"); 
	menu3.addItem("Dilapidations", "dilapidations.html"); 
	menu3.addItem("Building Defect Analysis", "buildingdefectanalysis.html");
	menu3.addItem("Property Maintenance", "propertymaintenance.html"); 
	menu3.addItem("Development Monitoring", "devmonitoring.html");
	menu3.addItem("Planning & Fire Safety Certificate Applications", "planandfirecert.html");
	menu3.addItem("Pre Development Condition Surveys", "predevsurveys.html");
	menu3.addItem("Reinstatement Valuations", "reinstatevalu.html");
	menu3.addItem("Project Management", "projectmanagement.html");

	//==================================================================================================
	
	var menu4 = ms.addMenu(document.getElementById("media"));
	menu4.addItem("New House Defects", "defects_newhouses.html"); 
	menu4.addItem("Old House Defects", "defects_oldhouses.html"); 

	//==================================================================================================

	var menu5 = ms.addMenu(document.getElementById("entproducts"));
	menu5.addItem("Contact Details", "contactus.html"); 
	menu5.addItem("The Team", "theteam.html"); 

	//==================================================================================================

	TransMenu.renderAll();
}

