$(function() {
    // hide all edit form below rows
    $('tr .hidden').hide();

    // on click for  the edit image, slideToggle
    $('tr .edit_row').click(function() {
        // slide down / up the form below
        $(this).parent().parent().next().animate({opacity: 'toggle'}, 'slow');
        return false;
    });
});
