var GLOBALINIT = [];
google.load("jquery","1.7");
google.load("jqueryui","1.8");
//google.load("swfobject", "2.2");
google.load("maps", "3.x", {
    other_params: 'sensor=false'
});


var CONFIG = {
  //staticMapImage: "http://maps.google.com/maps/api/staticmap?center=53.582300,10.016950&size=296xREPLACEWIDTH&zoom=16&sensor=false&maptype=map&markers=icon:http://www.sitegeist.de/fileadmin/assets/img/poi_default.png|Hamburg+Gertigstr.48",
  maps: {
    lat: 53.582300,
    lng: 10.016950,
    img: 'http://www.sitegeist.de/fileadmin/assets/img/poi_default.png'
  }
} 

google.setOnLoadCallback(function(){
  
  $(document).ready(function(){
    // checks, if an element exists, before starting to work on it
    $.fn.doOnce = function(func){
      this.length && func.apply(this);
      return this;
    };  
    //load libs and plugins
    $.ajax({
      async: false,
      url: '/fileadmin/assets/js/libs.js',
      success: function(){
        // load execution script
        $.getScript('/fileadmin/assets/js/common.js');
      },
      dataType: 'script',
      cache: true
    });
    
  });
  
});

