// JavaScript Document


var Gmap= Class.create({

//initialise function

initialize:function(id) {
  if (GBrowserIsCompatible()) {
	this.ggmap = new GMap2($(id));
	this.ggmap.setCenter(new GLatLng(51.528645, -0.128136), 16);
	this.ggmap.addControl(new GSmallMapControl());
	var point = new GLatLng(51.528645, -0.128136);
	this.ggmap.addOverlay(new GMarker(point));
  }
},

//function
auditionbacktoHotel:function () {
	 this.ggmap.panTo(new GLatLng(51.528645, -0.128136));
}

 });

document.observe("dom:loaded", function(){
   gmap = new Gmap("round1_audition_map");

});