$(document).ready(function(){

	$('.like_score').click(function() {
	
		var counterObj = $(this).siblings(".like_flower").children("a");
		$.get('modules.php?name=Likes&file=aj_addLike', { score: $(this).attr("score"), type: $(this).parents(".like_container").attr("type"), node: $(this).parents(".like_container").attr("node")}, function(data){
			counterObj.html(data);
		});
		return false;
	});



});
