// JavaScript Document
function acende(campo){
		campo.style.backgroundImage = "url(http://www.basqueteclube.com.br/imagens/bg_botao2.gif)";
		campo.style.backgroundRepeat = "no-repeat";
		campo.style.backgroundPosition = "right";
		campo.style.color = "#FFFFFF";
} 
function apaga(campo){
		campo.style.backgroundImage = "url(http://www.basqueteclube.com.br/imagens/bg_botao1.gif)";
		campo.style.backgroundRepeat = "no-repeat";
		campo.style.backgroundPosition = "right";
		campo.style.color = "#CCCCCC";
} 
function leva(endereco){
	location.href=endereco;	
}