if(sniffer.DOMable() && sniffer.IE()) {
	function ResizeParagraph() {
	}
	ResizeParagraph.prototype.onReady = function() {
		this.keydiv = document.getElementById("resizeKey");
		this.keyul = null;
		this.keyp = null;
		this.keydl = null;
		for(var i=0; i<this.keydiv.childNodes.length; i++) {
			if(this.keydiv.childNodes[i].nodeType == 1) {
				switch(this.keydiv.childNodes[i].tagName) {
				      case "UL" : {
					      this.keyul = this.keydiv.childNodes[i];
					      break;
				      }
				      case "P" : {
					      this.keyp = this.keydiv.childNodes[i];
					      var self = this;
					      this.keyp.onresize = function() {self.replace();}
					      break;
				      }
				      case "DL" : {
					      this.keydl = this.keydiv.childNodes[i];
					      break;
				      }
				      default : {
					      break;
				      }
				}
			}
		}
		this.replace();
	};
	ResizeParagraph.prototype.replace = function() {
		if(this.keyp.offsetHeight > 150) {
			this.keydl.style.position = "static";
		}
		else {
			this.keydl.style.position = "absolute";
		}
	}
	var resizeParagraph = new ResizeParagraph();
	window.addListener(resizeParagraph);
}
