// JavaScript Document function eMenu() { this.current = ""; } eMenu.prototype.current = function() { return this.current; } eMenu.prototype.onload = function(current) { return this.current; } emenu = new eMenu();