// change the color of the specified style element
function fade(styleElement, color) {
  if ($('info')) {
    new Effect.Highlight('info', {
      startcolor:'#86C80A', endcolor:'#DAEEB5', restorecolor:'#DAEEB5', duration:2.5
    });
  }
}

function setLoadFunctions() {
  setTooltips();
  
  fade();
  
  if (window.setClickOutTracking) {
    setClickOutTracking();
  }
}

window.onload = setLoadFunctions;