
if (jQuery("#map").length > 0){
	jQuery('#map').gmap3({
		map: {
		    options:{
		        zoom:15,
		        center: [45.591944, 5.344952],
		        mapTypeId: google.maps.MapTypeId.MAP,
		        mapTypeControl: true,
		        mapTypeControlOptions: {
		          style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
		        },
		        navigationControl: true,
		        scrollwheel: true,
		        streetViewControl: true,
		        disableDefaultUI: false
		    }
		},
		marker:{
		    latLng: [45.591944, 5.344952],
		    options: {
			    icon: new google.maps.MarkerImage(
			        "https://dressage38.com/wp-content/uploads/2015/02/1424011122_Dog.png", new google.maps.Size(273, 85, "px", "px")
			    )
		    }
		 }
		}

	);
}