function likeThis(postId) {
	var others;
	if (postId != '') {
		jQuery('#iLikeThis-'+postId+' .counter').text('Please Wait...');
		
		jQuery.post(blogUrl + "/wp-content/plugins/i-like-this/like.php",
			{ id: postId, rating: '_liked' },
			function(data){
				others = data - 1;
				jQuery('#iLikeThis-'+postId+' .counter').text(data + ' other readers also loved it!');
			});
	}
}

function hateThis(postId) {
	var others;
	if (postId != '') {
		jQuery('#iLikeThis-'+postId+' .counter').text('Please Wait...');
		
		jQuery.post(blogUrl + "/wp-content/plugins/i-like-this/like.php",
			{ id: postId, rating: '_hated' },
			function(data){
				others = data - 1;
				jQuery('#iLikeThis-'+postId+' .counter').text(others + ' other readers also hated it!');
			});
	}
}