web: comments, styling, and multiline comments, OH MY
    
        | author | 
        Steve Losh <steve@stevelosh.com> | 
    
    
        | date | 
        Sun, 13 Jun 2010 04:42:29 -0400 | 
    
    
        | parents | 
        0d78b56ae9aa  | 
    
    
        | children | 
        5668dd3e0a95  | 
    
$(function() {
    $("a.fold").toggle(function(event) {
        $(event.target).closest(".file").find(".file-review-contents").slideDown("fast", function() {
            $(event.target).closest("h3").find(".status").html("↓");
        });
        return false;
    },
    function(event) {
        $(event.target).closest(".file")
                        .find(".file-review-contents")
                        .slideUp("fast", function () {
            $(event.target).closest("h3").find(".status").html("→");
        });
        return false;
    });
    $(".submit").live('click', function() {
        $(this).closest("form").submit();
    });
});