
function initialize() {
    var mapLatlng = new google.maps.LatLng(49.4788324,0.6674194);
    var myOptions = {
      zoom: 9,
      center: mapLatlng,
      mapTypeControl: false,
      mapTypeId: google.maps.MapTypeId.ROADMAP,
      navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL}
    }

    map = new google.maps.Map(document.getElementById("gmap_implantations"), myOptions);


	var implantations = [
	['Nov@log Le Havre',49.4919916,0.1320934, 
	'http://maps.google.fr/maps?f=q&source=s_q&hl=fr&geocode=&q=buffard+Parc+Logistique+du+Pont+de+Normandie,+76700+Rogerville&sll=49.486305,0.184021&sspn=0.0794,0.146255&ie=UTF8&hq=buffard+Parc+Logistique+du+Pont+de+Normandie,&hnear=Rogerville&ll=49.501246,0.286674&spn=0.079375,0.146255&z=13&iwloc=A',
	'<div id="">'+
	'<address><h4>Nov@log</h4>'+
	'L\'Albatros - Esplanade de l\'Europe<br />76600 Le Havre<br />T&eacute;l. 02 76 30 50 80<br />Fax 02 76 40 80 04<br /><a href="mailto:info-nov@log-pole.eu">info-nov@log-pole.eu</a></address>'+
	'</div>'],
	['Nov@log Saint Etienne du Rouvray',49.3872605,1.0610799,
	'http://maps.google.fr/maps?f=q&source=s_q&hl=fr&geocode=&q=buffard+Parc+Activit%C3%A9s+de+la+Chauss%C3%A9e+de+la+Moselle+-+Port+Est,+B.P.+650+-+76059+Le+Havre+Cedex&sll=46.75984,1.738281&sspn=10.720331,18.720703&ie=UTF8&hq=buffard+Parc+Activit%C3%A9s+de+la+Chauss%C3%A9e+de+la+Moselle+-+Port+Est,+B.P.+650+-+76059+Le+Havre+Cedex&hnear=&ll=49.486305,0.184021&spn=0.0794,0.146255&z=13&iwloc=A',
	'<div id="">'+
	'<address><h4>Nov@log</h4>'+
	'50 Rue Ettore Bugatti<br />76800 Saint Etienne du Rouvray<br />T&eacute;l. 02 76 30 50 80<br />Fax 02 76 40 80 04<br /><a href="mailto:info-nov@log-pole.eu">info-nov@log-pole.eu</a></address>'+
	'</div>'],
	];

	image = 'javascripts/marker.png';
	
	for (i = 0; i < implantations.length; i++)
	{
		var imp = implantations[i];
		
		var myLatLng = new google.maps.LatLng(imp[1],imp[2]);
		
		var marker = new google.maps.Marker({
			position: myLatLng,
			map: map,
			icon: image,
			title: imp[0],
			content: imp[4]
		});
		
		marker.info = new google.maps.InfoWindow({
			content: imp[4]
		});
		
		marker.info.closeOthers = function(){
		}
		
		google.maps.event.addListener(marker, 'click', function() {
			map.setZoom(15);
			map.setCenter(this.position);
			this.info.closeOthers();
			this.info.open(map,this);
		});
		
}


}
