/* GENERATE TABS */
$(document).ready(function () {
    $("#bigMapLink").click(function(event){
        var mapAlreadyExists = false;
            if($('#small_google_map_wrapper').length) {
                mapAlreadyExists = true;
            }
            if(!mapAlreadyExists) {
                $.post(baseUrl + 'profiles/show_map', $("#MapDetailForm").serializeArray(), function (response)
                {
                    $("#google_map").html(response);
                });
            } else {
                $("#google_map").toggle();
            }
        return false;
    });
});


