$(document).ready(function() {

	$('#nombre, #correo, #comentario, #edad, #pais').focus(function() {
		if (this.value == this.defaultValue) $(this).val('');
	}).blur(function() {
		if ($.trim(this.value) == ''){
			this.value = (this.defaultValue ? this.defaultValue : '');
		}
	});

	$("#contacto").submit(function() {
		$('#loader').show();
		var $postdata = {
			nombre: $('#nombre').val(),
			correo: $('#correo').val(),
			edad: $('#edad').val(),
			pais: $('#pais').val(),
			comentario: $('#comentario').val(),
			procesa: true,
			ajax: true
		};
		$('#submit').attr("disabled", "disabled");
		$('#status').load('/index.php', $postdata);
		$('#status').fadeIn('slow');
		$('#loader').hide();
		$('#submit').removeAttr('disabled');
		return false;			
	});

});
