<!--
		imagepath = "/images/menu/";
		
		function imgswap(imgid)
		{
			if (document.getElementById(imgid).src.indexOf("_button.gif") != -1)
			{
				document.getElementById(imgid).src = imagepath + imgid + "_button_active.gif";
			}
			else
			{
				document.getElementById(imgid).src = imagepath + imgid + "_button.gif";
			}
		}
// -->