	if (TransMenu.isSupported())
	{
			var strURL;
			var strURLPrefix;
			
			strURL = location.href.substring(location.href.length-10, location.href.length);
			
			//alert(strURL);
			
			if(strURL == "index.html")
			{
				strURLPrefix = "";
			}
			else
			{
				strURLPrefix = "../";
			}
			
			var ms = new TransMenuSet(TransMenu.direction.right, 10, 10, TransMenu.reference.topRight);

			var mAboutUs = ms.addMenu(document.getElementById("aboutus"));
			//var mCustomers = ms.addMenu(document.getElementById("customers"));
			var mServices = ms.addMenu(document.getElementById("services"));
			

			mAboutUs.addItem("Contacts", strURLPrefix + "aboutus/contacts.htm");
			mAboutUs.addItem("Online Brochures", strURLPrefix + "aboutus/brochures.htm");
			mAboutUs.addItem("Press Releases", strURLPrefix + "aboutus/press.htm");
			mAboutUs.addItem("Feedback", strURLPrefix + "aboutus/feedback.htm");
			mAboutUs.addItem("Recruitment", strURLPrefix + "aboutus/recruitment.htm");
			
			//mCustomers.addItem("Customer List", strURLPrefix + "Customers/customer-list.htm");
			
			mServices.addItem("Web Reservation Systems", ""); 
			mServices.addItem("Gateway & Distribution Systems","");			
			mServices.addItem("Secure Payment Systems",strURLPrefix + "services/secure-payments.htm");			
			mServices.addItem("24/7 Support Centre",strURLPrefix + "services/24-7support.htm");		

			var mWebRes = mServices.addMenu(mServices.items[0]);			
			var mGate = mServices.addMenu(mServices.items[1]);
			
			mWebRes.addItem("Airlines", strURLPrefix + "services/airlines-ipa.htm");
			mWebRes.addItem("Ferry", strURLPrefix + "services/ferry-ipb.htm");
			mWebRes.addItem("Cruise", strURLPrefix + "services/cruise.htm");
			mWebRes.addItem("Rail", strURLPrefix + "services/railIPR.htm");
			mWebRes.addItem("Accommodation", strURLPrefix + "services/accommodation.htm");
			mWebRes.addItem("Bus", strURLPrefix + "services/bus.htm");
			mWebRes.addItem("Freight", strURLPrefix + "services/freight.htm");
			mWebRes.addItem("Travel Agents", strURLPrefix + "services/travelagents.htm");
			
			mGate.addItem("Ferry & Passenger Vessels", strURLPrefix + "services/ferry-gateway.htm");
			mGate.addItem("Airlines", strURLPrefix + "services/lcc-charter.htm");
			mGate.addItem("XML Gateway", strURLPrefix + "services/UnicornXml.htm");

			
			TransMenu.renderAll();
	}