function initDemos(){

    // setup flash gallery demo
    Shadowbox.setup([
        document.getElementById('flash1'),
        document.getElementById('flash2'),
        document.getElementById('flash3')
    ], {
        gallery:        'Flash',
        continuous:     true,
        counterType:    'skip',
        animSequence:   'sync'
    });

    // setup image map demo
    Shadowbox.setup(document.getElementById('hongkongmap').getElementsByTagName('area'));

};

function demoMap(){

    Shadowbox.open({
        player:     'html',
        content:    '',
        height:     300,
        width:      500,
        options:    {
            onFinish: function(item){
                if(GBrowserIsCompatible()){
                    var map = new GMap2(document.getElementById('shadowbox_content'));
                    map.setCenter(new GLatLng(37.4419, -122.1419), 13);

                    // add 10 markers to the map at random locations
                    var bounds = map.getBounds();
                    var southWest = bounds.getSouthWest();
                    var northEast = bounds.getNorthEast();
                    var lngSpan = northEast.lng() - southWest.lng();
                    var latSpan = northEast.lat() - southWest.lat();
                    for(var i = 0; i < 10; i++){
                        var point = new GLatLng(southWest.lat() + latSpan * Math.random(),
                            southWest.lng() + lngSpan * Math.random());
                        map.addOverlay(new GMarker(point));
                    }

                    // add some simple controls
                    map.addControl(new GSmallMapControl());
                    map.addControl(new GMapTypeControl());
                }
            }
        }
    });

};

function demoMessage(){
		
   Shadowbox.open({
        player:     'html',
        content:    '<div class="shadowbox_message"><font color="#d34807"><strong>LA COMISI&Oacute;N DE TRANSPARENCIA Y ACCESO A LA INFORMACI&Oacute;N P&Uacute;BLICA DEL ESTADO DE CAMPECHE.</strong></font><br /><br /><p></p><font color="#ffffff"><p align="justify">CON  FUNDAMENTO EN LO QUE ESTABLECEN LOS ART&Iacute;CULOS 55 y 56 DEL REGLAMENTO INTERIOR  DE ESTA COMISI&Oacute;N, Y DE CONFORMIDAD CON EL ACUERDO DEL PLENO DE FECHA 27 DE  ENERO DEL 2009, PUBLICADO EN EL <strong><span style="text-decoration: underline;">PERI&Oacute;DICO OFICIAL DEL ESTADO </span></strong>EL 29 DEL MISMO MES Y A&Ntilde;O, <strong style="text-decoration: underline;">EL D&Iacute;A 15 DE MARZO DEL A&Ntilde;O 2010</strong> ES DE DESCANSO OBLIGATORIO.<br /><br />DURANTE  ESTE D&Iacute;A <span style="text-decoration: underline; font-weight: bold;">NO CORRER&Aacute;N PARA ESTA  COMISI&Oacute;N</span>, LOS T&Eacute;RMINOS ESTABLECIDOS EN LOS ART&Iacute;CULOS 44, 67 Y 70 DE LA  LEY DE TRANSPARENCIA Y ACCESO A LA INFORMACI&Oacute;N P&Uacute;BLICA DEL ESTADO DE CAMPECHE.<br />LAS LABORES SE REANUDAR&Aacute;N EN  HORARIO NORMAL <span style="text-decoration: underline; font-weight: bold;">EL D&Iacute;A 16 DE MARZO DE 2010.</span></p></font></div>',
        height:     250,
        width:      500
    });

};

function demoGallery(){

    var img = {
        player:     'img',
        content:    'gallery/aston_martin/vanquish.jpg'
    };

    var video = {
        player:     'iframe',
        content:    'http://www.youtube.com/v/y8Kyi0WNg40&amp;autoplay=1',
        height:     340,
        width:      405,
        title:      'Dramatic Look'
    };

    Shadowbox.open([img, video], {
        continuous: true
    });

};