function showTip(imgTip)
{
  if (document.images && document['tip'])
    document['tip'].src = imgTip.src
}

function showArrow(strImgName)
{
  if (document.images)
    document[strImgName].src = imgArrow.src;
}

function showClearDot(strImgName)
{
  if (document.images)
    document[strImgName].src = imgClearDot.src;
}

function showHome()
{
  if (document.images)
    document['home'].src = imgHome.src;
}

function revertHome()
{
  if (document.images)
    document['home'].src = '';
}


// preload rollovers
if (document.images)
{
  var imgArrow = new Image();
  imgArrow.src = 'images/ARROW.GIF';

  var imgHome = new Image();
  imgHome.src = '';

  var imgClearDot = new Image();
  imgClearDot.src = 'images/dot_clear.gif';
}
