window.onload = function(){
    Shadowbox.init();
    initDemos();
};
function initDemos(){
    Shadowbox.setup([
        document.getElementById('flash1'),
        document.getElementById('flash2'),
        document.getElementById('flash3')
    ], {
        gallery:        'Flash',
        continuous:     true,
        counterType:    'skip',
        animSequence:   'sync'
    });
    Shadowbox.setup(document.getElementById('hongkongmap').getElementsByTagName('area'));
};

