  function initialize() {
    var myLatlng = new google.maps.LatLng(40.616168,20.780253);
    var myOptions = {
      zoom: 7,
      center: myLatlng,
      mapTypeControl: true,
      mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
      navigationControl: true,
      navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }

    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

    var contentString='<div id="content" style="color:#000000">'+
		      '<div id="siteNotice"></div><h1 id="firstHeading" class="firstHeading">@shqip.com</h1>'+
		      '<div id="bodyContent"><p><b>Info:</b> Informacione <b>te thjeshta</b>.</p><p>(Azhornimi fundit:22-09-2009).</p></div>'+
		      '</div>';
        
    var infowindow = new google.maps.InfoWindow({
        content: contentString
    });

    var marker = new google.maps.Marker({
        position: myLatlng,
        map: map,
        title: '@shqip.com'
    });
    google.maps.event.addListener(marker, 'click', function() {
        infowindow.open(map,marker);
    });
  }

