// custom response object
Ajax.Response			= Class.create();
Ajax.Response.prototype	= {
	initialize: function(transport) {
		
		this.transport	= transport;
		this.xml		= this.transport.responseXML.documentElement;
		this.empty		= !this.xml.hasChildNodes();
	}
}
