//**COMMENTS CODE**//
//-------------------
//Wasabi JQuery logic specific to comments controls

// open subComments on detailed pages
    
function toggleComments(){
    $("a.reply").click(function(){
        $(this).toggleClass('open');
        $(this).next("ul.subComments").slideToggle('slow');
        return false;
    });
};
