// JavaScript Document

function initialize() {
    var myLatlng = new google.maps.LatLng(50.47272, 7.732358)
    var myOptions = {
      zoom: 12,
      center: myLatlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    
	var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
    
	var image = 'img/maps.png';
    var myLatLng = new google.maps.LatLng(50.47272, 7.732358);
    var markerf = new google.maps.Marker({
        position: myLatLng,
        map: map,
        icon: image,
		title: 'Elfi Blum - La Linea' 
    });
	
	 /*var friedensdorf = '<div id="content">'+
        '<div id="siteNotice">'+
        '</div>'+
        '<div id="bodyContent" class="maptext">'+
        '<h1>La Linea</h1> <br /> ' +
        '<img src="img/friedensdorf.gif">'+
		'Gemeinde Dautphetal<br /> '+
		'</div>'+
        '</div>';*/
	
	
        
    var infowindowf = new google.maps.InfoWindow({
        content: friedensdorf,
    });
	
 
      google.maps.event.addListener(markerf, 'click', function() {
      infowindowf.open(map,markerf);
    });
	

  
  }
