$(document).ready(function(){
$('.post-title').click(function(e){
	if(e.which == 2){
              return true;
        }else{
              $(this).text('loading...');
              window.location = $(this).attr('href');
        }
});
}); 