  function mapinit() {
    var latlng = new google.maps.LatLng(53.160455,18.896484);
    var myOptions = {
      zoom: 5,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.TERRAIN
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
	
  var image = 'kmosite/images/kmo-marker.png';
  
  var myLatLng = new google.maps.LatLng(52.160455,18.896484);
  
  var beachMarkers=new Array();
  var geotags = new Array();
  var contents = new Array();  
  var infoWins = new Array();  
  var infoid = "";
  		$("#map-tags span").each(function(index) {						  
		geotags = $(this).attr("geotag").split("x");
		infoid = $(this).attr("id");
		myLatLng = new google.maps.LatLng(geotags[0],geotags[1]);;
			beachMarkers[index] = new google.maps.Marker({
			position: myLatLng,
			  map: map,
			  icon: image,
			  title: $('#'+infoid).html()
			  });
			
			
			
			contents[index] = '<div id="content" style="margin: 0 0 0 0;" >'+
    '<h1 id="firstHeading" class="firstHeading" style="font-size:17px; margin: 0 15px 10px 0;" >'+$(this).html()+'</h1>'+
    '<div id="bodyContent" style="margin: 0 0 5px 0;" >'+
    '<a style="font-size:15px;" target="_blank" href="/profil/'+$(this).attr('clubid')+'">Przejdz do strony klubu</a>'+
    '</div>'+
    '</div>';

			infoWins[index] = new google.maps.InfoWindow({
				content: contents[index],
				disableAutoPan: false,
				pixelOffset: new google.maps.Size(-3,45),
				maxWidth:300
			});

			eval("google.maps.event.addListener(beachMarkers["+index+"], 'click', function() {infoWins["+index+"].open(map,beachMarkers["+index+"]);});");
 		 });
  
  
  $('#map_canvas').css('z-index','2');
  



  }

