$(document).ready(function(){
	$('#btnenv').click(function(){
		var nom = $('#nom').val();
		var ape = $('#ape').val();
		var email = $('#email').val();
		var asunto = $('#asunto').val();
		var msg = $('#msg').val();
		$.ajax({
			type:'POST',
			url:'request/envContacto.php',
			data:{nom:nom,ape:ape,email:email,asunto:asunto,msg:msg},
			success:function(resp){
				var jresp = eval(resp);
				alert(jresp.msg);
				if(jresp.error == 0){
					self.parent.tb_remove();
				}
			}
		});
		return false;
	});
	var con_es;
	$('#tcont th,h1,#tcont a').mouseover(function(){
		con_es = $(this).text();
		$(this).text($(this).attr('en'));
	}).mouseout(function(){
		$(this).text(con_es);
	});
});
