<!-- 

	function showContent(a)
	{
	
		clearContent();
		document.getElementById(a).style.display = "block";	
		
	}

	function clearContent()
		{
			for (i=1; i<7; i++)
			{
				a = "box" + i;
				document.getElementById(a).style.display = "none";

			}

		}

	function swapStyle(a)
	{
	
		clearStyle();
		document.getElementById(a).className = "subsectionlink2";			
	}

	function clearStyle()
		{
			for (i=1; i<7; i++)
			{
				a = "link" + i;
				document.getElementById(a).className = "subsectionlink";

			}

		}



		function hoverTrueDiv(id)
		{
			x = document.getElementById(id);
			x.style.display = "block";
			
			
		}


		function hoverClearDiv(id, range)
		{
			for (i=1; i <=range; i++)
			{
				a = id + i + "";
				document.getElementById(a).style.display = "none";
			}

		}		
//-->