function writeBus()
{
	var client = uaDetect();

	if(client.ie && client.win)
	{
		//do nothing
	}
	else
	{
		if(client.dom)
		{
			document.write("<img src=\"../images/global/bus.png\" width=\"127\" height=\"120\" alt=\"The Fit-N-Fun Bus\" border=\"0\" />");
		}
	}
}

///////////////////////////////////

function getLevels(loc)
{
	var strLocation = loc.split("/");

	var strLevels = new Array();
	var j = 0;
	var runOnce = false;

	for(var i = strLocation.length;i --> 0;)
	{
		if(strLocation[i] == "" && runOnce != true)
		{
			strLocation[i] = "index.aspx";
			runOnce = true;
		}
		if(strLocation[i] != "admin")
		{
			strLevels[j] = strLocation[i];
			j++
		}
	}
	return strLevels;
}

//////////////////////////////////

function setMenu()
{
	var currentLocation = getLevels(window.location.pathname);
	var menuImage = document.getElementById("top-menu");
	menuImage.src = "../images/menu/" + currentLocation[1] + ".gif";
}
