$(function() {
				
				/*
				INITIALISATION
				Variabilise l'objet */
				var infoIWS = new google.maps.InfoWindow();
								
				/*
				COORDONNEES GPS */
				var IWSpos = new google.maps.LatLng(43.146538, 5.767677);
				
				/*
				CHEMIN DES ICONES */
				var pictojvmarine = '../images/picto_jvmarine.png';
				var pictojvmarineShadow = '../images/picto_jvmarine02.png';

				
				/*
				CONTENU DES INFOBULLES */
				var contentIWS = '<div class="infoBulleIWS"><h4>JV Marine Navyland</h4>Quartier Pont d Aran<br/>83150 Bandol - France</div>';
				
				/* OPTIONS PAR DEFAUT */
				var options = {
					// centre initial de la carte (coordonnées GPS)
					center: IWSpos,
					// niveau du zoom par défaut
					zoom: 15,					
					//Mode de rendu par défaut
					/*
					ROADMAP : mode de rendu vectoriel (routes)
					SATELLITE : mode de rendu satellite Google Earth 
					HYBRID :  mélange de rendu (satellite et routes)
					TERRAIN : mode relief */
					mapTypeId: google.maps.MapTypeId.ROADMAP,
					// affichage du sélecteur du mode de rendu
					mapTypeControl: true,
					mapTypeControlOptions: {
						//Style du sélecteur de mode de rendu
						/*
						DEFAULT : style de rendu automatique en fonction des dimensions de la carte
						DROPDOWN_MENU : menu déroulant
						HORIZONTAL_BAR : menu horizontal
						*/
					  style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
					},					
					// affichage du panneau de navigation (zoom, déplacement...)
					navigationControl: true,
					navigationControlOptions: {
						/*
						DEFAULT : mode automatique en fonction des dimensions de la carte
						SMALL : mode réduit
						ZOOM_PAN : mode complet (zoom et déplacement)
						ANDROID : mode adapté aux mobiles Android
						*/						
					  style: google.maps.NavigationControlStyle.SMALL
					}
				};			
				
				/*
				CREATION DE LA CARTE */
				var carte = new google.maps.Map(document.getElementById("carteGoogleMaps"), options);
				
				/*
				AJOUT DE MARKERS */
				var iconIWS = new google.maps.Marker({
					position: IWSpos,
					map: carte,
					icon : pictojvmarine,
					shadow : pictojvmarineShadow});									
				
							
				/*
				EVENEMENT SUR MARKERS */
				google.maps.event.addListener(iconIWS, 'click', function() {
					infoIWS.setContent(contentIWS);
					infoIWS.open(carte, this);
					carte.panTo(IWSpos);});	
					

				
				/*
				EVENEMENTS SUR LIENS HTML*/
				$('#lienIWS').click(function(){
					carte.panTo(IWSpos);
					infoIWS.setContent(contentIWS);
					infoIWS.open(carte, iconIWS);
				});

	});

