$(document).ready(function() {
	
	$(".pagination a").live("click",function(event){
	  event.preventDefault();
	  $(this).children("img").attr("src","/images/ajax-loader.gif").show("slow");
	  var destination=$(this).attr("href");
	  var homepage=$("#logo h2 a").attr("href");
	  if(destination==homepage)destination=homepage+"/page/1";
      $.get(destination,{ajax: "true"},function(html){
	  $("#posts_loop").html(html);
	  
	 });
	});
});


