// #PLib::PLoad('PLib.Dom.Client.prototype');

var GoogleMaps = Class.create();

GoogleMaps.prototype = {
	initialize: function() {
		Event.observe(window, 'load', this.bindToDocument.bindAsEventListener(this));
	},
	
	bindToDocument: function(event) {
		Event.observe(document.body, 'onunload', GUnload);
	}
}

var googleMaps = new GoogleMaps();
