$(document).ready(function() {
    $('ul.stuffList:not(:first)').hide();
    $('img.status:not(:first)').attr('src', 'images/year_expand.gif');
    
    $('div.year').click(function() {
        var year = $(this).parent();
        
        if ($(year).children('ul.stuffList').css('display') == 'none')
        {
            $(this).children('.status').attr('src', 'images/year_collapse.gif');
        }
        else    
        {
            $(this).children('.status').attr('src', 'images/year_expand.gif');       
        }
    
        $(year).children('ul.stuffList').toggle('fast');        
    });
});
