 $(function() { // when the document is ready to be manipulated.  
   if (GBrowserIsCompatible()) { // if the browser is compatible with Google Map's  
     var map = document.getElementById("map"); // Get div element  
     var m = new GMap2(map); // new instance of the GMap2 class and pass in our div location. 
		
	m.setCenter(new GLatLng(53.84372896141465, -2.9692697525024414), 15); // pass in latitude, longitude, and zoom level.  
    m.openInfoWindow(m.getCenter(), document.createTextNode("Design House, Bracewell Avenue"));
    m.setMapType(G_SATELLITE_MAP); 
   	var c = new GMapTypeControl(); // switch map modes  
	m.addControl(c);
	m.addControl(new GLargeMapControl())  
     
   }
 else {alert("Your browser does not support this GoogleMap. Please upgrade your browser to the latest version.");}  
 });  