function Class1(){};
Class1.prototype.hello = "world";
function Class2(){};
Class2.prototype.world = "hello";
inst = new Class2();
inst.__proto__ = Class1.prototype;
trace(inst.world);
trace(inst.hello);
inst.__proto__ = Class2.prototype;
trace(inst.world);
trace(inst.hello);
protoype ?=)