//input type button rollover
function ChangeButtonBCA(el, switchto) {
	el.className = switchto;
}

function Show_Stuff(Click_Menu)
// Function that will swap the display/no display for
// all content within span tags
{
	var el = document.getElementById(Click_Menu)
	if (el.style.display == "none")
	{
		el.style.display = "block";
	}
	else
	{
		el.style.display = "none";
	}
}
