
if (jQuery("#map").length > 0){
	jQuery('#map').gmap3({
		map: {
		    options:{
		        zoom:15,
		        center: [44.61705,11.261668, 44.61705,11.261668],
		        mapTypeId: google.maps.MapTypeId.MAP,
		        mapTypeControl: true,
		        mapTypeControlOptions: {
		          style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
		        },
		        navigationControl: true,
		        scrollwheel: true,
		        streetViewControl: true,
		        disableDefaultUI: false
		    }
		},
		marker:{
		    latLng: [44.61705,11.261668, 44.61705,11.261668],
		    options: {
			    icon: new google.maps.MarkerImage(
			        "http://www.giuseppebarbieri.it/wp-content/uploads/2015/04/map_pin.png", new google.maps.Size(203, 65, "px", "px")
			    )
		    }
		 }
		}

	);
}