  function initialize() {
    //var myLatlng = new google.maps.LatLng(36.886231,30.706176);

    var myOptions = {
      zoom: 17,
      center:new google.maps.LatLng(36.910662,30.802016),
      mapTypeControl: true,
      mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DEFAULT },
      navigationControl: true,
      navigationControlOptions: {style: google.maps.NavigationControlStyle.DEFAULT },
      mapTypeId: google.maps.MapTypeId.HYBRID      
    }



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









   

    var contentString = '<div id="content">'+
        'ISIK OTO' +
               
        '</div>';
        
    var infowindow = new google.maps.InfoWindow({
        content: contentString
    });
/*
    var marker = new google.maps.Marker({
        position: myLatlng,
        map: map,
        title: 'Uluru (Ayers Rock)'
    });
	*/
	
	    var image = 'images/mapicon.png';
    
    var beachMarker = new google.maps.Marker({
        position: new google.maps.LatLng(36.910662,30.802016),
        map: map,
        icon: image
    });
	
	/*
    google.maps.event.addListener(beachMarker, 'click', function() {
      infowindow.open(map,beachMarker);
    });
	*/
  }

	/*
	
	  function initialize() {
    var myOptions = {
      zoom: 4,
      center: new google.maps.LatLng(-33, 151),
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    var map = new google.maps.Map(document.getElementById("map_canvas"),
                                  myOptions);
	var image = 'images/mapicon.png';
   //var image = 'images/beachflag.png';
    var myLatLng = new google.maps.LatLng(-33.890542, 151.274856);
    var beachMarker = new google.maps.Marker({
        position: myLatLng,
        map: map,
        icon: image
    });
  }

	
	
	*/
	
