var NoahsArk = NoahsArk || {};

NoahsArk.clone = function(o){
    function F() {};
    F.prototype = o;
    return new F();
}
