var tkFragmentQuickMenus = {
  'internet.aerospace': {
    'tkmna.com': { node: ['0'], href: 'http://www.tkmna.thyssenkrupp.com/'}
  },
  'internet.ainp': {
    'Home': { node: ['484'], href: '/'},
    'Contact': { node: ['663'], href: '/contact/'},
    'Sitemap': { node: ['664'], href: '/sitemap/'},
    'Search': { node: ['665'], href: '/search/'},
    'tkmna.com': { node: ['0'], href: 'http://www.tkmna.thyssenkrupp.com/'}
  },
  'internet.cnb': {
    'Home': { node: ['50'], href: '/'},
    'Contact': { node: ['456'], href: '/contact/'},
    'Sitemap': { node: ['457'], href: '/sitemap/'},
    'Search': { node: ['458'], href: '/search/'},
    'tkmna.com': { node: ['0'], href: 'http://www.tkmna.thyssenkrupp.com/'}
  },
  'internet.kmm': {
    'Home': { node: ['486'], href: '/'},
    'Contact': { node: ['654'], href: '/contact/'},
    'Sitemap': { node: ['655'], href: '/sitemap/'},
    'Search': { node: ['656'], href: '/search/'},
    'tkmna.com': { node: ['0'], href: 'http://www.tkmna.thyssenkrupp.com/'}
  },
  'internet.mtkl': {
    'Home': { node: ['3'], href: '/'},
    'Contact': { node: ['11'], href: '/contact/'},
    'Sitemap': { node: ['9'], href: '/sitemap/'},
    'Search': { node: ['10'], href: '/search/'}
  },
  'internet.tkhg': {
    'Home': { node: ['240'], href: '/'},
    'Contact': { node: ['345'], href: '/contact/'},
    'Sitemap': { node: ['344'], href: '/sitemap/'},
    'Search': { node: ['313'], href: '/search/'},
    'tkmna.com': { node: ['0'], href: 'http://www.tkmna.thyssenkrupp.com/'}
  },
  'internet.tkmna': {
    'Home': { node: ['49'], href: '/'},
    'Contact': { node: ['431'], href: '/contact/'},
    'Sitemap': { node: ['433'], href: '/sitemap/'},
    'Search': { node: ['432'], href: '/search/'}
  },
  'internet.tkssd': {
    'Home': { node: ['486'], href: '/'},
    'Contact': { node: ['654'], href: '/contact/'},
    'Sitemap': { node: ['655'], href: '/sitemap/'},
    'Search': { node: ['656'], href: '/search/'},
    'tkmna.com': { node: ['0'], href: 'http://www.tkmna.thyssenkrupp.com/'}
  },
  'internet.tksst': {
    'Home': { node: ['482'], href: '/'},
    'Contact': { node: ['651', '670'], href: '/contact/'},
    'Sitemap': { node: ['652'], href: '/sitemap/'},
    'Search': { node: ['653'], href: '/search/'},
    'tkmna.com': { node: ['0'], href: 'http://www.tkmna.thyssenkrupp.com/'}
  },
  'internet.tkxa': {
    'Home': { node: ['480'], href: '/'},
    'Contact': { node: ['660'], href: '/contact/'},
    'Sitemap': { node: ['661'], href: '/sitemap/'},
    'Search': { node: ['662'], href: '/search/'},
    'tkmna.com': { node: ['0'], href: 'http://www.tkmna.thyssenkrupp.com/'}
  },
  'internet.tkxl': {
    'Home': { node: ['269'], href: '/'},
    'Contact': { node: ['387'], href: '/contact/'},
    'Sitemap': { node: ['369'], href: '/sitemap/'},
    'Search': { node: ['314'], href: '/search/'},
    'tkmna.com': { node: ['0'], href: 'http://www.tkmna.thyssenkrupp.com/'}
  },
  'internet.tmxa': {
    'Home': { node: ['478'], href: '/'},
    'Contact': { node: ['657', '669'], href: '/contact/'},
    'Sitemap': { node: ['658'], href: '/sitemap/'},
    'Search': { node: ['659'], href: '/search/'},
    'tkmna.com': { node: ['0'], href: 'http://www.tkmna.thyssenkrupp.com/'}
  },
  'intranet.sap': {
    'Home': { node: ['488'], href: '/'},
    'Contact': { node: ['711'], href: '/contact/'},
    'Sitemap': { node: ['709'], href: '/sitemap/'},
    'Search': { node: ['508'], href: '/search/'},
    'tkmna.com': { node: ['0'], href: 'http://www.tkmna.thyssenkrupp.com/'}
  },
  'intranet.tkmna': {
    'Home': { node: ['16'], href: '/'},
    'Contact': { node: ['331'], href: '/contact/'},
    'Sitemap': { node: ['333'], href: '/sitemap/'},
    'Search': { node: ['315'], href: '/search/'},
    'tkmna.com': { node: ['0'], href: 'http://www.tkmna.thyssenkrupp.com/'}
  },
  'intranet.tmxa': {
    'Home': { node: ['94'], href: '/'},
    'Contact': { node: ['334'], href: '/contact/'},
    'Sitemap': { node: ['348'], href: '/sitemap/'},
    'Search': { node: ['127'], href: '/search/'},
    'tkmna.com': { node: ['0'], href: 'http://www.tkmna.thyssenkrupp.com/'},
    'tkmna intranet': { node: ['0'], href: 'http://intranet.tkmna.com/'}
  }
}

var TkFragmentQuickMenu = Class.create();
TkFragmentQuickMenu.prototype = {
  initialize: function(container, id, assetPath, options) {
    this.container = container;
    this.id = id;
    this.assetPath = tkRootCMS + assetPath;
    this.options = {
      site: tkSite
    };
    Object.extend(this.options, options || {});
  },

  write: function() {
    var site = this.options.site;
    var menu = tkFragmentQuickMenus[site] || tkFragmentQuickMenus['default'];
    if (menu) {
      var list = [];
      list.push('<div id="' + this.id + '" class="tkFragmentQuickMenu">');
      $H(menu).each(function(e, i) {
        var href = e.value.href;
        if (href.charAt(0) == '/') {
          href = tkRoot + href.substring(1);
        }
        if (i > 0) {
          list.push('<span class="dot">&#183;</span>');
        }
        var on = (e.value.node).include(tkNode) ? 'class="on" ' : '';
        list.push('<a ' + on + 'href="' + href + '">' + e.key + '</a>');
      });
      list.push('</div>');
      list.each(function(html) { document.write(html) });
    }
  }
}
