var Ajax = {
	get: function (url, target, options) 
	{
		target = $(target);
		options = $merge({
			offset_y: 10,
			offset_x: 0,
			method: 'get'
		}, options || {});
		
		/*
		new Element('div', {
			'class': 'ajax-loader',
			'styles': {
				'width': target.getWidth() ,
				'height': target.getHeight() - options.offset_y,
				'opacity': '0.75',
				'z-index': '150',
				'position': 'absolute',
				'left': 0,
				'top': options.offset_y
				//'-moz-border-radius': '5px'
			}
		}).inject(target);
		*/
		new Request({ url: url, method: options.method,
			 onSuccess: function (data) {
				target.set('html', data);
				
				setRegistrationFormEvents();
			 }
		 }).send();
		
		return false;
	} 
};
