var input_dynamic = new Class(
	{
		options: {
			t: "",
			r: "",
			c: "",
			onMouseEnter: function () { alert("enter"); },
			onMouseLeave: function () { alert("leave"); },
			onFocus: function () { alert("focus"); },
			onBlur: function () { alert("blur"); }
		},
		initialize: function(options){
			this.setOptions(options);
			alert("moo");
		}
	}
);
input_dynamic.implement(new Options, new Events);