function Settings() { this.items = new Array(); this.items['siteurl'] = 'http://www.garmin.ee/' this.items['sitetitle'] = 'GARMIN EESTI | GARMIN GPS seadmete müük, rent, hooldus, lisavarustus, kaardid. GPS EESTI OÜ' this.get = function(name) { name = name.toLowerCase(); name = name.replace(/\s|_|-/g, ""); if (this.items[name]) { return this.items[name]; } else { return false; } } } var Settings = new Settings();