Behaviour.register({
	'#LocationMap' : {
		initialise: function() {
			this.map = new GMap2( this );
			//this.map.addMapType( new Zoomin.NZTM );
			var center = new GLatLng( MAP_LAT, MAP_LONG );
			this.map.setCenter( center, MAP_ZOOM );
			
			this.map.addMapType(G_NORMAL_MAP);
			var marker = new GMarker( center );
			this.map.addOverlay( marker );
			this.map.addControl( new GSmallMapControl() );
			
			/*var map = new GMap2(this);
			map.setCenter(new GLatLng(37.4419, -122.1419), 13);
			alert(MAP_LAT);
			alert(MAP_LONG);
			alert(MAP_ZOOM);*/
		}
	}
});