Wiking.inherit = function(ancestor)
{
    function subclass(){};
    subclass.prototype = ancestor.prototype;
    return new subclass;
};
