	function loadPostContent(elm, rate, postID) {
		var ids = { id: postID, rating: rate, action: 'rate_post' };
		jQuery.ajax({
			type: "post",
			url: ajaxurl+ "?rand=" + Math.random(),
			data: ids,
			beforeSend: function() {
				jQuery("#ratebox_"+postID).fadeTo(500, 0.10);
			},
			success: function(html) {
				jQuery("#ratebox_"+postID).html(html);
				jQuery("#ratebox_"+postID).fadeTo(500, 1);
			}
		});
	}
	
	function loadCommentContent(elm, rate, postID) {
		var ids = { id: postID, rating: rate, action: 'rate_comment' };
		jQuery.ajax({
			type: "post",
			url: ajaxurl + "?rand=" + Math.random(),
			data: ids,
			beforeSend: function() {
				jQuery("#rateboxComment_"+postID).fadeTo(500, 0.10);
			},
			success: function(html) {
				jQuery("#rateboxComment_"+postID).html(html);
				jQuery("#rateboxComment_"+postID).fadeTo(500, 1);
			}
		});
	}
