$(function () {
    
    $('div.comments').hide();
    $("h4.comment_block,form.comment_form").after("<a class='toggle'>view/hide</a>");
    $('a.toggle').click(function () {$(this).parents("div.note").children("div.comments").toggle('normal');});
    // $('form.comment_form').each(function (i) {
    //     var options = {
    //         target: $(this).before(),
    //         resetForm: true,};
    //     $(this).ajaxForm(options);
    // });
    if (window.location.hash) {
        var re = /com$/
        var hash = re.test(window.location.hash) ? window.location.hash : window.location.hash + 'com';
        $(hash).show();}
});