    function load() {
      if (! GBrowserIsCompatible()) 
        return;
        
      // map.setCenter(new GLatLng( 48.725930, 21.2504 ), 10);

    	var map = new GMap2(document.getElementById("map"));
      //map.enableScrollWheelZoom();
      //map.addControl(new GLargeMapControl());
      map.enableScrollWheelZoom();
	map.addControl(new GLargeMapControl());
      
      var point = new GLatLng( 48.725930, 21.2504 ); // Infiniti Arena      
      map.setCenter(point, 11);
      
      // Infiniti Arena ********************************************************
       
      var marker = new GMarker(point);
      map.addOverlay(marker);

      var message = "<div style='color: black; text-align: left;'>Infiniti Aréna<br>Pri Jazdiarni 1<br>040 01 Košice</div>";
      marker.openInfoWindowHtml(message);

      // Make user clicks on the marker open the info window
      GEvent.addListener(
        marker, 
        "click", 
        function() {
          marker.openInfoWindowHtml(message);
        }
      );

      // Hotel *****************************************************************
          
      var markerHotel = new GMarker(new GLatLng(48.71880, 21.258630));
      map.addOverlay(markerHotel);

      var messageHotel = '<div style="color: black; text-align: left;"><a style="color: black; text-align: left;" href="http://www.hotelzlatydukat.sk/">Hotel Zlatý Dukát</a><br>Hlavná 16<br>040 01 Košice</div>';

      // Make user clicks on the marker open the info window
      GEvent.addListener(
        markerHotel, 
        "click", 
        function() {
          markerHotel.openInfoWindowHtml(messageHotel);
        }
      );
      
      // Letisko ***************************************************************

      var markerLetisko = new GMarker(new GLatLng(48.673330, 21.236610));
      map.addOverlay(markerLetisko);

      var messageLetisko = '<div style="color: black; text-align: left;"><a style="color: black; text-align: left;" href="http://www.airportkosice.sk/">Letisko Košice<br>Košice International Airport</a></div>';

      // Make user clicks on the marker open the info window
      GEvent.addListener(
        markerLetisko, 
        "click", 
        function() {
          markerLetisko.openInfoWindowHtml(messageLetisko);
        }
      );
      
    }


$(document).ready(
	function() {
		load();
		$(window).unload(function(){GUnload();})
	}
)
