// contact_functions.js

$(document).ready(function(){
	
	$(".submitBtn").click(function(event){
								 
		event.preventDefault();
		
		ValidateForm();
	});

	$('#contactForm').ajaxForm(function() { 
		formSuccess();
	});
	
	/*
	var contactMap = new Map({containerID: "contactMap", lat: 52.291512, lng: -1.534696, zoom: 18, markerImage: "storage/images/maps_marker.png", markerCenterX: 91, markerCenterY: 84, markerWidth: 183, markerHeight: 168, allControlsOn: true, mapTypeControl: false, mapStyle: [
  {
    featureType: "landscape",
    elementType: "all",
    stylers: [
      { hue: "#ff9900" },
      { saturation: 53 }
    ]
  },{
    featureType: "road.arterial",
    elementType: "all",
    stylers: [
      { saturation: 99 },
      { hue: "#ffa200" },
      { visibility: "on" },
      { lightness: -26 }
    ]
  },{
    featureType: "road.arterial",
    elementType: "labels",
    stylers: [
      { invert_lightness: true },
      { hue: "#ffa200" },
      { lightness: 26 },
      { saturation: 40 }
    ]
  },{
    featureType: "road.local",
    elementType: "geometry",
    stylers: [
      { hue: "#002bff" },
      { saturation: 80 },
      { lightness: -73 }
    ]
  },{
    featureType: "road.local",
    elementType: "labels",
    stylers: [
      { invert_lightness: true },
      { lightness: 36 }
    ]
  }
]});
	*/
	
});
