function initializeImageHighlight() {
    insertJSParameter();
    jQuery('.wrap-in').find('table.wrap-in-inner').wrap('<div class="table-wrapper"/>');
    jQuery('.wrap-in').not(':has(.current)').find('.table-wrapper').hide();
    jQuery('.wrap-in').find('.current').addClass('active');
    jQuery('.wrap-in').find('h3').click(function() {
        jQuery(this).next('div').slideToggle('fast',
                                            function() {
                                                jQuery(this).prev('h3').toggleClass('active')
                                            })
    });
    /* expand first year */
    $('#image-highlight').find('h3:first').addClass('active').next('.table-wrapper').show();
}

function insertJSParameter() {
    jQuery('a.colorbox').each(function(index, value) {
        value['href'] += "?js=true";
    });
    jQuery('a.colorbox').colorbox({
        width:800,
        height:900,
        onOpen:function() {
            jQuery('object').hide();
            jQuery('embed').hide();
        },
        onClosed:function() {
            jQuery('object').show();
            jQuery('embed').show();
        }
    });
}

jQuery(document).ready(function() {
    initializeImageHighlight();
});


