(function($)
{
	$.fn.toExt = function()
	{
		if (this.length == 1)
			return Ext.get(this[0]);
		var data = [];
		this.each(function()
		{
			//console.log('---', this);
			data.push(this);
		});
		return Ext.get(data);
	}
	var oldExtGet = Ext.get;
	Ext.get = function(el)
	{
		if (typeof el == 'undefined')
			return null;
		return (typeof el.jquery == 'undefined') ? oldExtGet(el) : el.toExt();
	}
})(jQuery);
/* пример использования */
var lMask = new Ext.LoadMask($('#tree'), {msg: 'Подождите, жуем...'});