// JavaScript Document
function buttonOver(elmnt)
{
	elmnt.style.backgroundColor="#2a3745";
	elmnt.style.color="#ffffff";
}
function buttonOut(elmnt)
{
	elmnt.style.backgroundColor="transparent";
	elmnt.style.color="#c9c9c9";
}
function buttonClick(elmnt)
{
	window.location = elmnt;
}
function dropDown(id)
{
	document.getElementById(id).style.visibility="visible";
	document.getElementById(id).style.color="#c9c9c9";
}
function dropUp(id)
{
	document.getElementById(id).style.visibility="hidden";
}