// JavaScript Document

<!--

if (TransMenu.isSupported()) {
	var ms = new TransMenuSet(TransMenu.direction.down, 0,1, TransMenu.reference.bottomLeft);
	
	// Add solutions to Menu
	var solutions = ms.addMenu(document.getElementById("solutions"));
	solutions.addItem("Stepping Stone Equity", "/stepping-stone-equity", "0");
	solutions.addItem("Stepping Stone Executive Services", "/stepping-stone-executive-services", "0");
	//solutions.addItem("Stepping Stone Financial Services and Accounting", "/stepping-stone-financial", "0");
	solutions.addItem("Stepping Stone Legal", "/stepping-stone-legal", "0");

	
	// Add team to Menu
	var team = ms.addMenu(document.getElementById("team"));
	team.addItem("Management", "/the-team-management", "0");
	team.addItem("Stepping Stone Equity", "/the-team-equity", "0");
	team.addItem("Stepping Stone Executive Services", "/the-team-executive-services", "0");
	//team.addItem("Stepping Stone Financial Services and Accounting", "/the-team-financial-services", "0");
	team.addItem("Stepping Stone Legal", "/the-team-legal", "0");

	
	
	
	
	function init73() { 
		if (TransMenu.isSupported()) { 
			TransMenu.initialize();
		}
	}
	
	TransMenu.spacerGif = "/images/spacers/x.gif";
	TransMenu.sub_indicator = true; 
	TransMenu.menuPadding = 0;
	TransMenu.itemPadding = 0;
	TransMenu.shadowSize = 0;
	TransMenu.shadowOffset = 3;
	TransMenu.shadowColor = "#888";
	TransMenu.hideDelay = 600;
	TransMenu.slideTime = 300;
	TransMenu.modid = 73;
	TransMenu.selecthack = 1;
	TransMenu.renderAll();
	
	if (typeof window.addEventListener != "undefined") {
		window.addEventListener( "load", init73, false );
	} else if (typeof window.attachEvent != "undefined") {
		window.attachEvent( "onload", init73 );
	} else {
		if (window.onload != null) {
			var oldOnload = window.onload;
			window.onload = function ( e ) {
				oldOnload( e );
				init73();
			}
		} else {
			window.onload = init73();
		}
	}
}
//-->
