function likeThis(postId) {
	if (postId != '' && !jQuery('#iLikeThis-'+postId).hasClass('iLikeThis-disabled')) {
		jQuery('#iLikeThis-'+postId).addClass('iLikeThis-disabled');
		
		jQuery.post(blogUrl + "/wp-content/plugins/i-like-this/like.php",
			{ id: postId },
			function(data){
				jQuery('#iLikeThis-'+postId).text(data);
			});
	}
}

function favThis(postId) {
	if (postId != '' && !jQuery('#iFavThis-'+postId).hasClass('iFavThis-disabled')) {
		jQuery('#iFavThis-'+postId).addClass('iFavThis-disabled');
		
		jQuery.post(blogUrl + "/wp-content/plugins/i-like-this/fav.php",
			{ id: postId });
	}
}