function Menu(opt) {
this.el = document.createElement('div'); // или лучше document.createDocumentFragment()
this.construct(opt);
}
Menu.prototype.construct = function() {
// this.el.append(список)
};
//body.appendChild(new Menu().el)
Лучше как-то так реализуйте