jQuery(document).ready(function($){var ratingLink=$('a.gPostRating');ratingLink.attr('href','#');ratingLink.one("click",function(){$(this).click(function(){return false;});var postID=$(this).attr("rel");$(this).animate({opacity:0},200);$(this).parent('li.post-ratings').find('img.ratingLoading').fadeIn(200);$(this).parent('li.post-ratings').load("/rate-post?postid="+ postID+"&cachebuster="+ Math.floor(Math.random()*10001),function(){$(this).find('img.ratingLoading').fadeOut(200);$(this).find('a.gPostRating').animate({opacity:1},200);});return false;});});
