var RegionMap = new Class ({

	initialize: function (container,options){
var t = new drasticMap(container,options);
t.map.setCenter(new GLatLng(-25.3,130.98),4);
        t.map.setMapType(G_HYBRID_MAP);
 
	return t;
	},
 	identify: function(){
        return this;
        },
     DefaultOnGridClick: function(id) {
                var t= this.t;
                t.DefaultOnClick(id);
                t.refresh();
}
});
RegionMap.implement(new Options, new Events);
//RegionalMap.inherit(drasticMap);



