﻿    function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.removeMapType(G_SATELLITE_MAP);
        map.setCenter(new GLatLng(48.53000000, 10.37000000), 7);
        map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
        var polyline = new GPolyline([
  		  new GLatLng(49.351979, 9.145867), /* Mosbach */
  		  new GLatLng(49.484677, 8.476724), /* Mannheim */
  		  new GLatLng(48.572472, 7.813268), /* Kehl */
  		  new GLatLng(47.554363, 9.690238), /* Lindau */
  		  new GLatLng(47.723937, 10.311047), /* Kempten */
  		  new GLatLng(47.870150, 12.638944), /* Traunstein */
  		  new GLatLng(48.139127, 11.580214), /* München */
  		  new GLatLng(48.833671, 12.960648), /* Deggendorf */
  		  new GLatLng(49.167643, 10.33053), /* Feuchtwangen */
  		  new GLatLng(49.490201, 9.773153), /* Bad Mergentheim */
  		  new GLatLng(49.351979, 9.145867) /* Mosbach */
		], "#0000ff", 6);
	map.addOverlay(polyline);
	var irmscher = new GLatLng(48.810554, 9.448689);
	var info = "<img src='http://files.dreaminconcepts.de/images/logosmall.jpg' alt='Logo Irmscher Transporte'>"
	var marker = new GMarker(irmscher);
	GEvent.addListener(marker, "click", function()
	{marker.openInfoWindowHtml(info)});
	map.addOverlay(marker);
      }
    }  
