/*
  Class, version 2.2
  Copyright (c) 2006, Alex Arnell <alex@twologic.com>
  Licensed under the new BSD License. See end of file for full license terms.
*/
var Class = {
	extend: function(parent, def) {
		if (arguments.length == 1) {
			def = parent
			parent = null;
		}
		var func = function() {
			if (!Class.extending) {
				this.initialize.apply(this, arguments);
			}
		};
		if (typeof(parent) == 'function') {
			Class.extending = true;
			func.prototype = new parent();
			delete Class.extending;
		}

		if (def) {
			Class.inherit(func.prototype, def);
		}
		return func;
	},

	inherit: function(dest, src, fname) {
		if (arguments.length == 3) {
		var ancestor = dest[fname];
		var descendent = src[fname];
		var method = descendent;

		descendent = function() {
			var ref = (this.__parent = {});
			this.__parent[fname] = ancestor.bind(this);
			var result = method.apply(this, arguments);
	        ref ? this.__parent[fname] = ref : delete this.__parent[fname];
			return result;
		};
		// mask the underlying method
		descendent.valueOf = function() { return method; };
		descendent.toString = function() { return method.toString(); };
		dest[fname] = descendent;
		}
		else {
			for (var prop in src) {
				if (dest[prop] && typeof(src[prop]) == 'function') {
					Class.inherit(dest, src, prop);
				}
				else {
					dest[prop] = src[prop];
				}
			}
		}
		return dest;
	}
};

// finally remap Class.create for backward compatability with prototype
Class.create = function() {
	return Class.extend.apply(this, arguments);
}

/*
  Redistribution and use in source and binary forms, with or without modification, are
  permitted provided that the following conditions are met:

  * Redistributions of source code must retain the above copyright notice, this list
    of conditions and the following disclaimer.
  * Redistributions in binary form must reproduce the above copyright notice, this
    list of conditions and the following disclaimer in the documentation and/or other
    materials provided with the distribution.
  * Neither the name of typicalnoise.com nor the names of its contributors may be
    used to endorse or promote products derived from this software without specific prior
    written permission.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
  EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
  THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
