function initialize() {
      var map = new GMap2(document.getElementById("map"));
      map.setCenter(new GLatLng(50.0451195, 15.7982877), 13);
      map.openInfoWindowHtml(map.getCenter(), "<p><strong>Originální dárky</strong><br />Model Plast s.r.o.<br /><br />Husova 1746<br /> 530 03 Pardubice</p>");
                   
      // Select a map type which supports obliques
      map.setMapType(G_NORMAL_MAP);
      map.setUIToDefault();

      // Enable the additional map types within
      //the map type collection
      map.enableRotation();
    }
