// Run jQuery in no-conflict mode as this site also uses MooTools
jQuery.noConflict();

// when the DOM is ready...
jQuery(document).ready(function () {

    var $commentCount = jQuery('.comments-content .comment').length;
    
    if ($commentCount > 10) {
        var $extraComments = jQuery('.comments-content .comment:gt(4)').hide();
        jQuery('<a id="show-comments" href="#">' + $extraComments.length + ' more comments. Show All Comments</a>')
            .appendTo('.comments-content')
            .click(function() {
                // alert('clicked!');
                jQuery($extraComments).show();
                jQuery(this).hide();
                return false;
        });
    };

});