endereco = new Array("Assessoria de Imprensa","Eventos/Palestras","Patrocínio/Marketing","Virgin Racing","Outros Assuntos");
/*
action = new Array("assessoria.php","eventos.php","marketing.php","virgin.php","outros.php");
function showForm(form) {
	var formulario = document.getElementById("form1");
	var titulo = document.getElementById("titForm");
	titulo.innerHTML = endereco[form];
	formulario.style.display = "block";
	formulario.action = action[form];
}
*/
$(document).ready(function() {
	$(":text, #senha:password").focus(function() {
			$(this).css("backgroundColor","#f0cfc9");
		}
	).blur(function() {
			$(this).css("backgroundColor","#fff");
		}
	);
	$("#button").css("backgroundColor","#be3017");
	$("#button").hover(function() {
			$(this).css({backgroundColor:"#cc472f",cursor:"hand"});
		},function() {
			$(this).css("backgroundColor","#be3017");
		}
	);
});
