$(document).ready(function(){

    $('#mapDis').zoommap({
        // Width and Height of the Map
        width: '480px',
        height: '442px',

        //Misc Settings
        blankImage: 'assets/images/blank.gif',
        zoomDuration: 1000,
        bulletWidthOffset: '10px',
        bulletHeightOffset: '10px',

        //ids and classes
        zoomClass: 'zoomable',
        popupSelector: 'div.popup',
        popupCloseSelector: 'a.close',

        //Return to Parent Map Link
        showReturnLink: true,
        returnId: 'returnlink',
        returnText: 'return to campus map',

        //Initial Region to be shown
        map: {
                id: 'distribuicao',
                image: 'assets/images/mapa-brasil.png',
                data: 'distribuicao/map'

        }
    });

    $('#mapVin').zoommap({
        // Width and Height of the Map
        width: '337px',
        height: '416px',

        //Misc Settings
        blankImage: 'assets/images/blank.gif',
        zoomDuration: 1000,
        bulletWidthOffset: '10px',
        bulletHeightOffset: '10px',

        //ids and classes
        zoomClass: 'zoomable',
        popupSelector: 'div.popup',
        popupCloseSelector: 'a.close',

        //Return to Parent Map Link
        showReturnLink: true,
        returnId: 'returnlink',
        returnText: 'return to campus map',

        //Initial Region to be shown
        map: {
                id: 'vinho',
                image: 'assets/images/mapa-sem-marcadores.png',
                data: 'vinho/map'

        }
    });

});

