// Initilalize google map
$(document).ready(function() {

    //initialize();
    $("#bigMapLink").click(function(event){
    var mapAlreadyExists = false;
            if($('#map').length) {
                mapAlreadyExists = true;
            }
            if(!mapAlreadyExists) {
                $.post(baseUrl + 'projects/show_map', $("#MapDetailThickboxForm").serializeArray(), function (response)
                {
                    $("#google_map").html(response);
                });
            } else {
                $("#google_map").toggle();
            }
        return false;
    });

});


