// JavaScript Document

function calendar(){
	var topOn = document.getElementById("cal-head");
	var topOnLink = document.getElementById("cal-link");
	var topOff = document.getElementById("news-head");
	var bottomOn = document.getElementById("cal");
	var bottomOff = document.getElementById("news");
	var bottomOffLink = document.getElementById("news-link");
	
	topOn.style.background = "url(images/home/cal-head-on.gif) no-repeat";
	topOnLink.style.color = "#cc0000";
	topOff.style.background = "url(images/home/news-head-off.gif) no-repeat";
	
	//bottomOn.style.visibility = "visible";
	//bottomOn.style.position = "relative";
	bottomOn.style.display = "block";
	//bottomOff.style.visibility = "hidden";
	//bottomOff.style.position = "absolute";
	bottomOff.style.display= "none";
	bottomOffLink.style.color = "#9b7d63";
	}
	
function news(){
	var topOn = document.getElementById("news-head");
	var topOnLink = document.getElementById("news-link");
	var topOff = document.getElementById("cal-head");
	var bottomOn = document.getElementById("news");
	var bottomOff = document.getElementById("cal");
	var bottomOffLink = document.getElementById("cal-link");
	
	topOn.style.background = "url(images/home/news-head-on.gif) no-repeat";
	topOnLink.style.color = "#cc0000";
	topOff.style.background = "url(images/home/cal-head-off.gif) no-repeat";
	
	//bottomOn.style.visibility = "visible";
	//bottomOn.style.position = "relative";
	bottomOn.style.display = "block";
	//bottomOff.style.visibility = "hidden";
	//bottomOff.style.position = "absolute";
	bottomOff.style.display = "none";
	bottomOffLink.style.color = "#9b7d63";
	}