<!--
function allLinksInactive() {
		document.getElementById("onelink").className="";
		document.getElementById("twolink").className="";
		document.getElementById("threelink").className="";
		document.getElementById("fourlink").className="";
		document.getElementById("fivelink").className="";
	}
	
function oneDIV() {
		one.style.display = "block";
		one1.style.display = "block";
		two.style.display = "none";
		two2.style.display = "none";
		three.style.display = "none";
		three3.style.display = "none";
		four.style.display = "none";
		four4.style.display = "none";
		five.style.display = "none";
		five5.style.display = "none";
		allLinksInactive();
		document.getElementById("onelink").className="active";
	}
	function twoDIV() {
		one.style.display = "none";
		one1.style.display = "none";
		two.style.display = "block";
		two2.style.display = "block";
		three.style.display = "none";
		three3.style.display = "none";
		four.style.display = "none";
		four4.style.display = "none";
		five.style.display = "none";
		five5.style.display = "none";
		allLinksInactive();
		document.getElementById("twolink").className="active";
	}
	function threeDIV() {
		one.style.display = "none";
		one1.style.display = "none";
		two.style.display = "none";
		two2.style.display = "none";
		three.style.display = "block";
		three3.style.display = "block";
		four.style.display = "none";
		four4.style.display = "none";
		five.style.display = "none";
		five5.style.display = "none";
		allLinksInactive();
		document.getElementById("threelink").className="active";
	}
	function fourDIV() {
		one.style.display = "none";
		one1.style.display = "none";
		two.style.display = "none";
		two2.style.display = "none";
		three.style.display = "none";
		three3.style.display = "none";
		four.style.display = "block";
		four4.style.display = "block";
		five.style.display = "none";
		five5.style.display = "none";
		allLinksInactive();
		document.getElementById("fourlink").className="active";
	}
	function fiveDIV() {
		one.style.display = "none";
		one1.style.display = "none";
		two.style.display = "none";
		two2.style.display = "none";
		three.style.display = "none";
		three3.style.display = "none";
		four.style.display = "none";
		four4.style.display = "none";
		five.style.display = "block";
		five5.style.display = "block";
		allLinksInactive();
		document.getElementById("fivelink").className="active";
	}

//-->