// JavaScript Document
function buttonOver(elmnt)
{
	elmnt.style.backgroundColor="#333333";
	elmnt.style.color="#ffffff";
}
function buttonOut(elmnt)
{
	elmnt.style.backgroundColor="transparent";
	elmnt.style.color="#e7eeff";
}
function dropDown(id)
{
	document.getElementById(id).style.visibility="visible";
}
function dropUp(id)
{
	document.getElementById(id).style.visibility="hidden";
}
//Forum
function topicOver(elmnt)
{
	elmnt.style.cursor='pointer';
	elmnt.style.backgroundColor="#d2ffd0";
	elmnt.style.color="#000000";
}
function topicOut(elmnt)
{
	elmnt.style.cursor='auto';
	elmnt.style.backgroundColor="#f3f3f3";
	elmnt.style.color="#000000";
}
