$(document).ready(function () {

    // Adjust the bottom and top margin of the form when the page is viewed under Chrome and Safari.
    if (jQuery.browser.safari) {
        $('.infoContainer form').css({ 'margin-top': '-5px' })
        $('#directory input[type="image"]').css({ 'margin-top': '2px' });
    }

    // Remove the <td> bottom border for the last <tr> element.
    $('tr:last td').css({ 'border-bottom': 'none' });


    $('#years').hide();
    $('#previousYears').click(function () {
        $('#years').toggle();
    });

});
