$().ready( function (){
    $("#most_comment").click(
        function () {
            $("#most_read_content").fadeOut(10);
            $("#most_comment_content").fadeIn('slow');

            $("#most_comment").removeClass('inactive');
            $("#most_read").addClass('inactive');
            return false;
        }
        );
    $("#most_read").click(
        function () {
            $("#most_comment_content").fadeOut(10);
            $("#most_read_content").fadeIn('slow');

            $("#most_comment").addClass('inactive');
            $("#most_read").removeClass('inactive');
            return false;
        }
        );
});

