//<!--

/*
 * This file will be called once - put all JS functionality here, 
 * for things like window.load event handling, global var setup, etc.
 * 
 */

// object-based parameter holder
window.CVBA = (window.CVBA == undefined) ? {} : window.CVBA;

// init the map in the background
Event.observe
(
    window,
    'load',
    function()
    {
        window.CVBA.Map = new Map();
        window.CVBA.Map.embed();
        $('mapContainer').setOpacity(0);
    }
)

//-->