<!--
function fixlight(fcus) {
 clearInterval(highlighting)
 for (i = 1;i < 6;i = i + 1) {
  objFilters = document.images[i].filters;
  if (document.images[i] != fcus) {
    document.images[i].clicked = false;
  }
  if (typeof(objFilters.alpha) != 'undefined') {
    objFilters.alpha.opacity = 20;
  }
 }
 fcus.filters.alpha.opacity = 100;
 fcus.clicked = true;
}


function high(which2){
 theobject=which2
 highlighting=setInterval("highlightit(theobject)",50)
}


function low(which2){
 if (!which2.clicked) {
   clearInterval(highlighting);
   which2.filters.alpha.opacity=20;
 }
}


function highlightit(cur2){
 if (cur2.filters.alpha.opacity<100)
   cur2.filters.alpha.opacity+=5
 else if (window.highlighting)
   clearInterval(highlighting)
}
//-->