$(document).ready(function() { 
	
	$("input[type=text],input[type=password]").css("border","1px solid #A5ACB2");
	$("input[type=text],input[type=password]").css("padding","1px");
	$("input[type=text],input[type=password]").focus(function() {
		$(this).css("border","1px solid #BF2525");
	});
	$("input[type=text],input[type=password]").blur(function() {
		$(this).css("border","1px solid #A5ACB2");
	});
	
	/*$(".listado tr").hover(function() {
		$(this).children("td").css("background-color","#F6F6F6");
	},function() {
		$(this).children("td").css("background-color","transparent");
	});*/
	
	// Desofuscar correos
	
	$('.o_mail').defuscate();
});