window.onload = function(){

    Shadowbox.init();
    initDemos();

};

function initDemos(){

    Shadowbox.setup([
        document.getElementById('a'),
        document.getElementById('b'),
        document.getElementById('c')
    ], {
        gallery:        'Flash',
        continuous:     true,
        counterType:    'skip',
        animSequence:   'sync'
    });



};


