function initShortcutsHover(site_section) {
  if (!document.getElementById) { return; }
  if ((site_section != 'building-systems') && (site_section != 'manufacturing-support')) { site_section = 'facility-support'; }
  var offcolor = '666';
  var oncolor = '908571';
  if (site_section == 'building-systems') { oncolor = '6E779D'; }
  else if (site_section == 'manufacturing-support') { oncolor = '70A2C3'; }
  var section_root = document.getElementById('cover-content');
  var image_path = '../components/images/'+site_section+'-cover-shortcuts-';
  image1 = new Image();
  image1.src = image_path+'1-icon-over.gif';
  image2 = new Image();
  image2.src = image_path+'1-title-over.gif';
  image3 = new Image();
  image3.src = image_path+'2-icon-over.gif';
  image4 = new Image();
  image4.src = image_path+'2-title-over.gif';
  image5 = new Image();
  image5.src = image_path+'3-icon-over.gif';
  image6 = new Image();
  image6.src = image_path+'3-title-over.gif';
  image7 = new Image();
  image7.src = image_path+'4-icon-over.gif';
  image8 = new Image();
  image8.src = image_path+'4-title-over.gif';
  section_root.getElementsByTagName('div')[1].onmouseover = function() {
    this.getElementsByTagName('img')[0].src = image_path+'1-icon-over.gif';
    this.getElementsByTagName('h3')[0].getElementsByTagName('img')[0].src = image_path+'1-title-over.gif';
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].style.color = '#'+oncolor;
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].getElementsByTagName('a')[0].style.color = '#'+oncolor;
  }
  section_root.getElementsByTagName('div')[1].onmouseout = function() {
    this.getElementsByTagName('img')[0].src = image_path+'1-icon.gif';
    this.getElementsByTagName('h3')[0].getElementsByTagName('img')[0].src = image_path+'1-title.gif';
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].style.color = '#'+offcolor;
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].getElementsByTagName('a')[0].style.color = '#'+offcolor;
  }
  section_root.getElementsByTagName('div')[2].onmouseover = function() {
    this.getElementsByTagName('img')[0].src = image_path+'2-icon-over.gif';
    this.getElementsByTagName('h3')[0].getElementsByTagName('img')[0].src = image_path+'2-title-over.gif';
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].style.color = '#'+oncolor;
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].getElementsByTagName('a')[0].style.color = '#'+oncolor;
  }
  section_root.getElementsByTagName('div')[2].onmouseout = function() {
    this.getElementsByTagName('img')[0].src = image_path+'2-icon.gif';
    this.getElementsByTagName('h3')[0].getElementsByTagName('img')[0].src = image_path+'2-title.gif';
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].style.color = '#'+offcolor;
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].getElementsByTagName('a')[0].style.color = '#'+offcolor;
  }
  section_root.getElementsByTagName('div')[3].onmouseover = function() {
    this.getElementsByTagName('img')[0].src = image_path+'3-icon-over.gif';
    this.getElementsByTagName('h3')[0].getElementsByTagName('img')[0].src = image_path+'3-title-over.gif';
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].style.color = '#'+oncolor;
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].getElementsByTagName('a')[0].style.color = '#'+oncolor;
  }
  section_root.getElementsByTagName('div')[3].onmouseout = function() {
    this.getElementsByTagName('img')[0].src = image_path+'3-icon.gif';
    this.getElementsByTagName('h3')[0].getElementsByTagName('img')[0].src = image_path+'3-title.gif';
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].style.color = '#'+offcolor;
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].getElementsByTagName('a')[0].style.color = '#'+offcolor;
  }
  section_root.getElementsByTagName('div')[4].onmouseover = function() {
    this.getElementsByTagName('img')[0].src = image_path+'4-icon-over.gif';
    this.getElementsByTagName('h3')[0].getElementsByTagName('img')[0].src = image_path+'4-title-over.gif';
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].style.color = '#'+oncolor;
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].getElementsByTagName('a')[0].style.color = '#'+oncolor;
  }
  section_root.getElementsByTagName('div')[4].onmouseout = function() {
    this.getElementsByTagName('img')[0].src = image_path+'4-icon.gif';
    this.getElementsByTagName('h3')[0].getElementsByTagName('img')[0].src = image_path+'4-title.gif';
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].style.color = '#'+offcolor;
    this.getElementsByTagName('li')[this.getElementsByTagName('li').length-1].getElementsByTagName('a')[0].style.color = '#'+offcolor;
  }
}
