function likeThis(postId) {
	if (postId != '') {
		jQuery('#iLikeThis-'+postId+' .counter').text('...');
		
		jQuery.post(blogUrl + "/wp-content/plugins/i-like-this/like.php",
			{ id: postId },
			function(data){
				jQuery('#iLikeThis-'+postId+' .counter').text(data);
			});
	document.getElementById('iLikeThis-'+postId).style.background = 'url('+blogUrl+'/wp-content/plugins/i-like-this/css/heart.jpg) center left no-repeat';	
	}
}

function likeThis2(commentId) {
	if (commentId != '') {
		jQuery('#iLikeThis-'+commentId+' .counter').text('...');

		jQuery.post(blogUrl + "/wp-content/plugins/i-like-this/like2.php",
			{ id: commentId },
			function(data){
				jQuery('#iLikeThis-'+commentId+' .counter').text(data);
			});
	document.getElementById('iLikeThis-'+commentId).style.background = 'url('+blogUrl+'/wp-content/plugins/i-like-this/css/heart.jpg) center left no-repeat';
	}
}
