/*---
	GOOGLE MAPS
---------------*/
var map; 

function load(){
	if(GBrowserIsCompatible()) {
		map = new GMap2(document.getElementById("googlemap"));
		map.addControl(new GSmallMapControl());
		map.setCenter(new GLatLng(53.80125911756994, -9.222679138183594), 11);
		
		var marker = new GMarker(new GLatLng(53.79905401984222, -9.316020011901855));
		map.addOverlay(marker);
	}
	else{
		alert("We were unable to load our position map as your browser is not compatible with the Google Maps API. Apologies for any inconvience caused");
	}
}


