Jquery and Inheritance

Jquery and Inheritance

Hi!, I need in my project javascript class inheritance like in prototype:

var Core = {
....
};

AbstractWebForm = {
};

CreateProjectForm = Core.extend(AbstractWebForm, {
});

In prototype there is class inheritance implementation bases on Alex Arnell`s implementation from:
http://code.google.com/p/inheritance/

please, is there any support in jQuery for this.

thanks!

Ivan Polak