$(function(){

	var ServicaPos = new google.maps.LatLng(45.985076,4.735528);
	var pictoServica = 'http://www.servica.fr/wp-content/themes/servica/img/logo-maps.png';
	var pictoShadowServica = 'http://www.servica.fr/wp-content/themes/servica/img/logo-maps-shadow.png';
	var ServicaAdresse = "<h4>Servica</h4> 46 rue Alexandre Richetta<br />69400 Villefranche Sur Saône";
	
	function initialize() {
        var myOptions = {
			center: ServicaPos,
			zoom: 15,
			mapTypeId: google.maps.MapTypeId.ROADMAP,
			mapTypeControl: true,
			mapTypeControlOptions: {
				style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
			},
			navigationControl: true,
			navigationControlOptions: {
				style: google.maps.NavigationControlStyle.SMALL
			},
        };
        
        var carte = new google.maps.Map(document.getElementById('big-map'),
            myOptions);
 
        var iconServica = new google.maps.Marker({
			map: carte,
			position: ServicaPos,
			icon: pictoServica,
			shadow: pictoShadowServica
		});

		var infoServica = new google.maps.InfoWindow();
 
        google.maps.event.addListener(iconServica, 'click', function() {
        	infoServica.open(carte, this);
			infoServica.setContent(ServicaAdresse);
			carte.panTo(ServicaPos);
        });
      }
 
      google.maps.event.addDomListener(window, 'load', initialize);
	
});
