var dummyVotesData =
{"posts":[{
		"post-5456":{
			"numVotes": "7"
		},
		"post-5459":{
			"numVotes": "0"
		}
	}]
};

function trackVote(id)
{
	trackVoteAJAXCall(id);
	var $postClip = $("#post-" + id);
	var $ratingAreaClip = $("#post-" + id + " .ratingArea");//postClip.(".ratingArea");
	var $numberOfLikesClip = $("#post-" + id + " .numberOfLikes");//postClip.(".numberOfLikes");
	$ratingAreaClip.removeClass("clickable");
}

function trackVoteAJAXCall(id)
{
	//insert the AJAX tracking code here
}