$(document).ready(function(){

    var options = {
        resizeLgImages:     true,
        displayNav:         true,
        handleUnsupported:  'remove',
        keysClose:          ['c', 27] // c or esc
    };

    Shadowbox.init(options);

});

window.onload = function(){

    Shadowbox.init();

    var flash_els = [
        document.getElementById('flash1'),
        document.getElementById('flash2'),
        document.getElementById('flash3')
    ];

    Shadowbox.setup(flash_els, {
        gallery:        'Flash',
        continuous:     true,
        counterType:    'skip'
    });

};