function initialize() {
	/*
	 * Really simple map the contact page.
	 */
	var latlng = new google.maps.LatLng(53.800651,-4.064941);
	var opts = {
	  zoom: 15,
	  center: latlng,
	  mapTypeId: google.maps.MapTypeId.ROADMAP,
	  mapTypeControl: false
	};
	var map = new google.maps.Map(document.getElementById("contactmap"), opts);
	var marker = new google.maps.Marker({
	  position: latlng, 
	  map: map, 
	  title:"Interior Affairs"
	}); 
}

