
	function bindCommentsPagination(article_id) {
		jQuery('.comments-pagination a').click(function(){
			var page = jQuery(this).html();
			jQuery.ajax({
				type: "GET",
				url: "/display/article.php?article_id="+article_id+"&ajax=ajax&mode=komentari&comments_page="+page,
				success: function(msg){
					jQuery('#ajax-content').html(msg);
					bindCommentsPagination(article_id);
				}
			});
		});
	}
