var A=function(){
};
$.extend(A.prototype, {
init:function(){
alert(\'A init\');
}
});
var B=function(){
};
$.extend(B.prototype,A.prototype,{
John Resig created a snippet for simple inheritance here. http://ejohn.org/blog/simple-javascript-inheritance/
he stores the super class to a _super variable so you can call it like such
this._super();
you can reference his code snippet to get a better idea of what he another helpful post is: http://alexsexton.com/?p=51