$(function() { // when the document is ready to be manipulated.					  if (GBrowserIsCompatible()) { // if the browser is compatible with Google Map's					  var map = document.getElementById("bluMap"); // Get div element					  var m = new GMap2(map); // new instance of the GMap2 class and pass in our div location.						  m.setCenter(new GLatLng(50.968144,-114.073083),13); // pass in latitude, longitude, and zoom level.					  					  m.setMapType(G_NORMAL_MAP); // sets the default mode. G_NORMAL_MAP, G_HYBRID_MAP							  m.addControl(new GLargeMapControl()); // creates the zoom feature					  					  m.addOverlay(new GMarker(new GLatLng(50.968144,-114.073083)));				  }				  else {					  alert("Please Upgrade your browser!");				  }			  });