﻿// <!CDATA[
    $(document).ready(function(){
        $('.comments-container').hide();
    });

    function ShowHideComments(){
        if($('.comments-container').is(":hidden")){
            $('.comments-container').slideDown("slow");
            $('#comments-link').attr("class", "hide-commetns");          
        }
        else{
           $('.comments-container').slideUp("slow"); 
           $('#comments-link').attr("class", "show-comments"); 
        } 
    }

// ]]>

