J(document).ready(function(){
/*
	J("#email").attr("value", "E-MAIL"); 
	J("#senhaFake").attr("value", "SENHA");
	J("#senhaFake").focus(function(){
		J("#senhaFake").remove();
		J("#senha").css({'display' : 'block'});
		J("#senha").focus();
	})
	J("#email").focus(function(){
		J("#email").attr("value", "");
	})
	J("#top_senha").hide();	
	J("#top_email").attr("value", "E-MAIL"); 
	J("#top_senhaFake").attr("value", "SENHA");
	J("#top_senhaFake").focus(function(){
		J("#top_senhaFake").remove();
		J("#top_senha").show();
		J("#top_senha").focus();
	})
	J("#top_email").focus(function(){
		J("#top_email").attr("value", "");
	})
	*/
	})
