delay = setTimeout('',10);

function bannerSlideshow_DoFSCommand(command, args) {
  RAD_hideall();
}

function RAD_hideall() {
  menusmenu.style.display='none';
}

function RAD_showmenu(id) {
  clearTimeout(delay);
  RAD_hideall();
  id.style.display='block';
}

function RAD_hidemenu(id) {
  id2 = id;
  delay = setTimeout('RAD_hide(id2)', 400);
}

function RAD_hide(id) {
  id.style.display='none';
}

// helen

function makehelen() {
  first = "helen.breslin";
  second = "@";
  third = "unique-cui"
  fourth = "sine.com";
  helen = first + second + third + fourth;
}

function writehelen() {
  makehelen();
  window.document.write('<a href="#" onClick="sendtohelen();return false;" title="click to send an email" onMouseOver="window.status=\'\';return true;">' + helen + '</a>');
}

function sendtohelen() {
  makehelen();
  window.document.location.href = 'mailto:' + helen;
}

// keith

function makekeith() {
  first = "keith.kenny";
  second = "@";
  third = "unique-cui"
  fourth = "sine.com";
  keith = first + second + third + fourth;
}

function writekeith() {
  makekeith();
  window.document.write('<a href="#" onClick="sendtokeith();return false;" title="click to send an email" onMouseOver="window.status=\'\';return true;">' + keith + '</a>');
}

function sendtokeith() {
  makekeith();
  window.document.location.href = 'mailto:' + keith;
}