<!--
	// preload ButtonOn Images to improve initial swap time
	var aButtons = new Array();
	aButtons[0] = new Image();
	aButtons[0].src = "../aaa/images/topnav_solutions.jpg";
	aButtons[1] = new Image();
	aButtons[1].src = "../aaa/images/topnav_clients.jpg";
	aButtons[2] = new Image();
	aButtons[2].src = "../aaa/images/topnav_aboutus.jpg";

	// SwapButton is called from the WebMenu OnShow and OnHide events
	// state is "on" or "off" and id is the WM.Group ID property
	function SwapButton(id, state)
	{
		if(state == "on")
			eval("document." + id + ".src='../aaa/images/" + id + ".jpg'");
		else if(state == "off")
			eval("document." + id + ".src='../aaa/images/" + id + ".jpg'");
	}
	
	function nourlfx()
	{}
	//-->

