// JavaScript Document
function over(what,num)
{
	document.getElementById(what).style.backgroundColor="#ffffff";
	document.getElementById(num).style.color="#000077";
	document.getElementById(num).style.textDecoration="underline";
}
function out(what,num)
{
	document.getElementById(what).style.backgroundColor="transparent";
	document.getElementById(num).style.color="#ffffff";
	document.getElementById(num).style.textDecoration="none";
}