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

