
if (jQuery("#map").length > 0){
	jQuery('#map').gmap3({
		map: {
		    options:{
		        zoom:15,
		        center: [45.4454062, -73.8096961],
		        mapTypeId: google.maps.MapTypeId.MAP,
		        mapTypeControl: true,
		        mapTypeControlOptions: {
		          style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
		        },
		        navigationControl: true,		        
		        streetViewControl: true,
		        disableDefaultUI: false,
		        draggable: false,
		        scrollwheel: false,
		        scaleControl: false,    
		    }
		},
		marker:{
		    latLng: [45.4454062, -73.8096961],
		    options: {
			    icon: new google.maps.MarkerImage(
			        "http://www.catvet.ca/wp-content/uploads/2016/05/shutterstock_320656982-Converted.png", new google.maps.Size(273, 85, "px", "px")
			    )
		    }
		 }
		}

	);
}