     function load() {
      if (GBrowserIsCompatible()) {
  var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(52.4842189, 13.3532901), 15, G_NORMAL_MAP );


var tinyIcon1 = new GIcon(G_DEFAULT_ICON);
tinyIcon1.image = "http://www.hotel-schoeneberg.de/google-icon/bus.png";
tinyIcon1.iconSize = new GSize(25, 29);
markerOptions1 = { icon:tinyIcon1 };


var html3 = [];
var point3 = new GPoint(13.352723121643066, 52.48356427822094);
var html3 ='<div id="google" style=\"height: 140px; width: 160px\"><div style="still1">Bushaltestelle Albertstr. </div><br><br><b>M 85</b> Richtung Hauptbahnhof<br>M 48 Richtung Alexanderplatz<br>104 Richtung Tunnelstr. / Strahlau<br>187 Richtung U-Bahnhof Turmstrasse<br><br>von dieser Haltestelle erreichen Sie den Potsdamer Platz, Reichstag, Museumsinsel und den Hauptbahnhof.</div>'
var bus = new GMarker(point3,markerOptions1 );
GEvent.addListener(bus, "mouseover", function() {bus.openInfoWindowHtml(html3)});
map.addOverlay(bus);

var html4 = [];
var point4 = new GPoint(13.35362434387207, 52.48528915254611);
var html4 ='<div id="google" style=\"height: 140px; width: 160px\"><div style="still1">Bushaltestelle Albertstr. </div><br><br>M 85 Richtung S-Bahnhof Lichterfelde Sued<br>M 48 Richtung Bussealle/Zehlendorf<br>104 Richtung Brixplatz/ Neu Westend<br>187 Richtung Halbauer Weg / Lankwitz<br></div>'
var bus1 = new GMarker(point4,markerOptions1 );
GEvent.addListener(bus1, "mouseover", function() {bus1.openInfoWindowHtml(html4)});
map.addOverlay(bus1);




      }
    }
   
