$(document).ready(function(){  

// This is for the comments

$("div.ditto_comments").click(function() { // When trigger is clicked... 
    var divId = $(this).attr('id');
    $(this).children('.clickdown').toggle("slow");
    return false;
}); 



}); 
