﻿
$(function() {

    //from small map
    if (window.ests == undefined) {
        $("#map").hide()
    } else {
        if ($("#map_canvas").length>0)
            createMap($("#map_canvas").get(0), ests, false);
    }

    $('#map_canvas, a[href=#map], .openmap').click(function (event) {
        $("#map_big").dialog({
            height: 400,
            width: 600,
            modal: false,
            title: title,
            closeOnEscape: true, 
            resizable: false,
            dialogClass: 'map_canvas_dialog'
        });

        createMap($('#map_canvas2').get(0), ests, true);

        event.preventDefault();
    });

    //from listing repeaters
    $('a.viewonmap').click(function(event) {
        $("#map_big").dialog('close');
        $("#map_big").dialog({
            height: 400,
            width: 600,
            modal: false,
            title: title,
            closeOnEscape: true,
            resizable: false,
            dialogClass: 'map_canvas_dialog'
        });

        createMap($('#map_canvas2').get(0), ests, true);


        event.preventDefault();
    });

    $("#map_big .close").click(function(e) {
        $('#map_big').dialog("close");
        e.preventDefault();
    })

});
