// JavaScript Document	
function initialize() {
	
	if (GBrowserIsCompatible()) {
		 var map = new GMap2(document.getElementById("map"));
		 map.addControl(new GLargeMapControl());
		 map.setCenter(new GLatLng(-1.2378,36.8101), 15);
		 map.openInfoWindow(map.getCenter(),
		 document.createTextNode("Visit our showroom in Gigiri Shopping Centre next to the Kenol petrol Station")
		);
	 }
 }
