
	<!-- //This script controls the rollovers for the navigation -->
	function swap (name,over)
	{
		if(window.document.images) {
			if (over)
				window.document.images[name].src = "images/" + name + "_over.gif";
			else
				window.document.images[name].src = "images/" + name + ".gif";
		}
	}