/*  Marcompro JavaScript framework, version 1.0
 *  (c) 2007 Richard Sengers
 *
 *
 *--------------------------------------------------------------------------*/
// prototype already reserved the Ajax var, that's why we call it AjaxClass
var MJL_Ajax = Class.create({
	
	initialize: function(options) {
		this.handler_request 	= new MJL_Ajax_Handler_Request();
		this.handler_request.setOptions(options);
	}
	
});
