


// the over and out state for the side links in the sub pages
function showLine(textLine) {
	textLine.style.textDecoration="underline";
	textLine.style.color="#8AB9D0";
	//textLine.style.color="#666666";
	
	}
	function noLine(textLine) {
	textLine.style.textDecoration="none";
	textLine.style.color="#000000";
		
	}
	
// the over and out state for the top navigation
function changeLinkOver (theLink) {
//alert("works");
theLink.style.textDecoration="underline";
theLink.style.color="#8AB9D0";
}

function changeLinkOut (theLink) {
theLink.style.textDecoration="none";
theLink.style.color="#ffffff";
}


