// NN6 document.all equalizer
if (!document.all) {
	Node.prototype.__defineGetter__("all", function() {
		if (document.getElementsByTagName("*").length) {
			switch (this.nodeType) {
				case 9:
					return document.getElementsByTagName("*")
					break
				case 1:
					return this.getElementsByTagName("*")
					break
			}
		}
		return ""
	})
	Node.prototype.__defineSetter__("all", function() {})
}

