var map;
function initialize() { if (!document.getElementById('map-canvas')) return;
var myLatLng=new google.maps.LatLng(32.3335932, 35.0123348);
var mapOptions = {
zoom: 11,
center: myLatLng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
var image = 'webimages/logomap.png';
var markers=new Array();
myLatLng=new google.maps.LatLng(32.3335932, 35.0123348);
markers[39]= new google.maps.Marker({
position: myLatLng,
map: map,
icon: image,
title:"חלום בחווה"
});
markers[39].infowindow =new google.maps.InfoWindow({
content: "חלום בחווה
עמק חפר
",
maxWidth: 400,
});
google.maps.event.addListener(markers[39], 'click', function() {
markers[39].infowindow.open(map,markers[39]);
});
window.setTimeout(function(){markers[39].infowindow.open(map,markers[39]);},1000);
}
google.maps.event.addDomListener(window, 'load', initialize);