$(document).ready(function() {


    // Question
    $('.question').click(function() {

        var commentId = $(this).attr('rel');

        //alert(commentId);

        $.scrollTo('#answer_' + commentId, { duration: 500, onAfter: function() {
        $('#answer_' + commentId + '_text').highlightFade({ color: 'rgb(56, 56, 56)', speed: 500 });
        } 
        });
    });

    // Go To TOP

    $('.go_to_top').click(function() {

        $.scrollTo('#top_zone', { duration: 500 });

    });

});