// language class function languageManager() { this.lang = "en"; this.load = function(lang) { this.lang = lang this.url = location.href.substring(0, location.href.lastIndexOf('/')); document.write(""); } this.addIndexes= function() { for (var n in arguments[0]) { this[n] = arguments[0][n]; } } }