// JavaScript Document
function ultimas_wordpress() {
	$.ajax({
		type: "POST",
   		url: "class/ultimoblog.php",
        beforeSend: function() {
			$("#ultblog").html("Cargando...");
			    	    },
		error: function(request,error){alert("ha ocurrido un errror: "+error);},								
		success: function(resultado) {
			$('#ultblog').html(resultado);
			}
	});
}
