$(document).ready(function(){
	$('.button-answer').click(function(){
		$.post("/ajax/addComment.php", { userId: $('#current-id').val(), text: $('#text-comment').val(), artId: $('#current-artid').val() },
			function(data) {
				$('.server-alert').html(data);
				$('#text-comment').val('');
		});
	});
	
	$('.likecomm').click(function(){
		var id = $(this).prev().prev().val();
		if($(this).hasClass('disabled')) {
			return false;
		}
		else {
			$.post('/ajax/likeComment.php', {commentId: id, act: 1},
				function(data){
					$('.comment-rating-'+id).html(data);
			});
			$(this).addClass('disabled');
			$(this).next().addClass('disabled');
			return false;
		}
	});
	$('.dislikecomm').click(function(){
		var id = $(this).prev().prev().prev().val();
		if($(this).hasClass('disabled')) {
			return false;
		}
		else {
			$.post('/ajax/likeComment.php', {commentId: id, act: -1},
				function(data){
					$('.comment-rating-'+id).html(data);
			});
			$(this).addClass('disabled');
			$(this).prev().addClass('disabled');
			return false;
		}
	});
});
