function likeThis(postId) {
	if (postId != '') {
		jQuery('#iLikeThis-'+postId+' #counter-data').text('...');
		
		jQuery.post(blogUrl + "/wp-content/plugins/i-like-this/like.php",
			{ id: postId },
			function(data){
				jQuery('#iLikeThis-'+postId).html('<div class="counter"></div>&nbsp;<span id="counter-data">'+data+'</span>');
			});
	}
}
function likeThisNo(postId) {
	if (postId != '') {
		jQuery('#iLikeThis-'+postId+' .counter').text('...');
		
		jQuery.post(blogUrl + "/wp-content/plugins/i-like-this/like.php",
			{ idNo: postId },
			function(data){
				jQuery('#iLikeThis-'+postId+' .counter').text(data);
				
			});
	}
}