
if (jQuery("#map").length > 0){
	jQuery('#map').gmap3({
		map: {
		    options:{
		        zoom:15,
		        center: [41.9685887, -87.9705811],
		        mapTypeId: google.maps.MapTypeId.MAP,
		        mapTypeControl: true,
		        mapTypeControlOptions: {
		          style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
		        },
		        navigationControl: true,
		        scrollwheel: true,
		        streetViewControl: true,
		        disableDefaultUI: false
		    }
		},
		marker:{
		    latLng: [41.9685887, -87.9705811],
		    options: {
			    icon: new google.maps.MarkerImage(
			        "https://www.carrollsanimalhouse.com/wp-content/uploads/2015/03/CAH_Webloc_ICON_105x100.png", new google.maps.Size(105, 100, "px", "px")
			    )
		    }
		 }
		}

	);
}