// JavaScript Document
function initialize() {
    var myLatlng = new google.maps.LatLng(46.360006,17.785458);
    var myOptions = {
      zoom: 15,
      center: myLatlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }
 
    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
 
    var contentString = '<div id="content">'+
        '<div id="siteNotice">'+
        '</div>'+
        '<h3 id="firstHeading" class="firstHeading"><b>LeloSoft Kft<b></h3>'+
        '<div id="bodyContent">'+
        '<h4>Kaposvár  7401   József Attila u. 7</h4>'+
        '</div>'+
        '</div>';
        
    var infowindow = new google.maps.InfoWindow({
        content: contentString
    });
 
    var marker = new google.maps.Marker({
        position: myLatlng,
        map: map,
        title: 'Lelosoft Kft (Kaposvár)'
    });
    google.maps.event.addListener(marker, 'click', function() {
      infowindow.open(map,marker);
    });
  }

