$(window).load(function() {
    $('body').css('background', '#dbecfc url(images/bodyBg.jpg) repeat-x bottom');

    $('.leg .head').addClass('closed').siblings('.information').css('display', 'none');
    $('.leg .head').click(function() {
        if ($(this).hasClass('open')) {
            $(this).addClass('closed').removeClass('open');
        }
        else {
            $(this).addClass('open').removeClass('closed');
        }
        $(this).siblings('.information').slideToggle();
    });

    $('#map-controls #open-all').click(function() {
        $('.leg .head').addClass('open').removeClass('closed');
        $('.leg .information').slideDown();
    });
    $('#map-controls #close-all').click(function() {
        $('.leg .head').addClass('closed').removeClass('open');
        $('.leg .information').slideUp();
    });
});