if (TransMenu.isSupported()) {

	var ms = new TransMenuSet(TransMenu.direction.down, 0, 0,
			TransMenu.reference.bottomLeft);
	var menu20 = ms.addMenu(document.getElementById("menu20"));
	/* menu20.addItem("Overview", "overview", "0");*/
	menu20.addItem("Approaches", "approaches", "0");
	//menu20.addItem("Team", "team", "0");
	menu20.addItem("Testimonials", "testimonials", "0");
	/*menu20.addItem("Our friends", "friends", "0");*/
	var menu21 = ms.addMenu(document.getElementById("menu21"));
	menu21.addItem("Domain Areas", "domain-areas", "0");
	menu21.addItem("Technologies", "services-and-technologies", "0");

	function init() {
		if (TransMenu.isSupported()) {
			TransMenu.initialize();
			menu20.onactivate = function() {
				document.getElementById("menu20").className = "hover";
			};
			menu20.ondeactivate = function() {
				document.getElementById("menu20").className = "";
			};
			menu21.onactivate = function() {
				document.getElementById("menu21").className = "hover";
			};
			menu21.ondeactivate = function() {
				document.getElementById("menu21").className = "";
			};
			document.getElementById("menu22").onmouseover = function() {
				ms.hideCurrent();
				this.className = "hover";
			}
			document.getElementById("menu22").onmouseout = function() {
				this.className = "";
			}

		}
	}

	TransMenu.spacerGif = "images/x.gif"; // path to a transparent spacer gif
	TransMenu.dingbatOn = "images/submenu-on.gif"; // path to the active sub menu dingbat
	TransMenu.dingbatOff = "images/submenu-off.gif";
	TransMenu.sub_indicator = true;

	TransMenu.menuPadding = 0; // padding between menu border and items grid
	TransMenu.itemPadding = 0; // additional padding around each item
	TransMenu.shadowSize = 2; // size of shadow under menu
	TransMenu.shadowOffset = 3; // distance shadow should be offset from leading edge
	TransMenu.shadowColor = "#888"; // color of shadow (transparency is set in CSS)
	TransMenu.shadowPng = "images/grey-40.png"; // a PNG graphic to serve as the shadow for mac IE5
	TransMenu.backgroundColor = "#FFCC99"; // color of the background (transparency set in CSS)
	TransMenu.backgroundPng = "images/white-90.png"; // a PNG graphic to server as the background for mac IE5
	TransMenu.hideDelay = 600; // number of milliseconds to wait before hiding a menu
	TransMenu.slideTime = 300;

	TransMenu.renderAll();

	if (typeof window.addEventListener != "undefined")
		window.addEventListener("load", init, false);

	// IE
	else if (typeof window.attachEvent != "undefined") {
		window.attachEvent("onload", init);
		//window.attachEvent( "onunload", disposeAllTabs );
	}

	else {
		if (window.onload != null) {
			var oldOnload = window.onload;
			window.onload = function(e) {
				oldOnload(e);
				init();
			}
		} else
			window.onload = init();
	}

}

