function Toggle(a_Element)	{
	var l_Element = document.getElementById(a_Element);
	var l_Toggle = document.getElementById(a_Element + "_toggle");
	$("#" + a_Element).slideToggle("fast");
	if(l_Toggle.src == getHost()  + "/assets/staffnet/images/twistie-open.jpg")	{
		
		$("#" + a_Element + "_toggle").attr("src", "/assets/staffnet/images/twistie-closed.jpg");

	} else {
		
		$("#" + a_Element + "_toggle").attr("src", "/assets/staffnet/images/twistie-open.jpg");
	}
	
}

function getHost() {
	var url = window.location.href;
	var nohttp = url.split('//')[1];
	var hostPort = nohttp.split('/')[0]
	//alert("http://" + hostPort);
	return "http://" + hostPort;
}

