Menu = Class.create();
Object.extend(Menu.prototype, WebControl.prototype);

Object.extend(Menu.prototype,
    {
        initialize : function(config)
        {
            WebControl.prototype.initialize.call(this, config);
            var thisClass = this;
            
            this.config.url = "Components/Menu/Menu.php";
            
            this.config.Show = function() { }
            
            this.config.AddEvents = function() { }
        }
    }
);
