




jQuery(document).ready(function(){

    

});

function make_click(id)
    {
        var tabContainers = jQuery('div#tab' + id + ' > div');
        jQuery('div#tab' + id + ' ul.tabNavigation a').filter(':first').click();

    }
    
    
function get_google_map_data (id)	
    {
        if (jQuery('#google_map_content_' + id + ' #google_map_data').html() == '')
            {
                var queryString = { "action": "get_google_map", "post_id" : id};
                var script_url = theme_url + "/ajax-requests.php";  
                
                jQuery.ajax({
                  type: "POST",
                  url: script_url,
                  async:   true,
                  enctype: 'multipart/form-data',
                  cache: false,
                  data: queryString,
                  success: function(html)
                                {
                                    jQuery('#google_map_content_' + id + ' .ajax_loading').hide();
                                    jQuery('#google_map_content_' + id + ' #google_map_data').html(html);
                                },
                  error: function (data, status, e)
                        {
                            alert ('Error!');
                        }
                });   
            }
    
    }