questa forse fa per te..Codice PHP:
function inheritPrototype(child, parent) {
var copyOfParent = Object.create(parent.prototype);
copyOfParent.constructor = child;
child.prototype = copyOfParent;
};
Ah.. un po' di cultura
http://www.crockford.com/javascript/inheritance.html
very good