google.load("maps", "3.x", {"other_params":"sensor=false"});
google.setOnLoadCallback(function() {
	var westHallam = new google.maps.LatLng(52.966676,-1.358378);
	var map = new google.maps.Map(document.getElementById("map"), {
	    zoom: 14,
	    center: westHallam,
	    mapTypeId: google.maps.MapTypeId.ROADMAP
	    }
	);
	var marker = new google.maps.Marker({
      position: westHallam, 
      map: map, 
      title:"West Hallam Office",
	  icon: '/assets/images/oh_sales_contact_icon.gif'
	});
});
