function likeThis(postId) {
	if (postId != '') {
		jQuery('#iLikeThis-'+postId+' .counter').html('<img src="http://www.manakor.org/wp-content/themes/manakor/img/loader.gif" style="height: 8px;" alt="Loading..." />');
		
		jQuery.post(blogUrl + "/wp-content/plugins/i-like-this/like.php",
			{ id: postId },
			function(data){
				jQuery('#iLikeThis-'+postId+' .counter').html('<abbr style="border: 0;" title="Your vote is already counted!">likes (' + data + ')</abbr>');
			});
	}
}