$(function() {
	$.ajax({
	  url: "/wp-content/themes/mindtagger/ajax/blog.php",
	  cache: false,
	  success: function(html){
		$("#blogdiv").append(html);
	  }
	});
});