// JavaScript Document
$(document).ready(function() {	
	$('.like-text a').click(function(ev){
		ev.preventDefault();
		var href = $(this);
		$.getJSON(jQuery(this).attr('href'), function(json){
			href.parent().html('<img src="/images/thumb_up_icon.png" border="0" />' + json.voted);
		});
	});
});