<!--
var the_time;var lowlighting;
if (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion)>=4) isie=true;
function high(which2){
 if (isie==true)
 {
theobject=which2
highlighting=setInterval("highlightit(theobject)",20)
  if (the_time) clearTimeout(the_time)
  if (the_time) clearInterval(lowlighting)
}

}

function lowit(which2){
	 if (isie==true)
 {
theobject=which2
the_time=setTimeout('low(theobject)',3000)
}
}


function low(which2){
	 if (isie==true)
 {
theobject=which2
//
lowlighting=setInterval("lowlightit(theobject)",20)
//which2.filters.alpha.opacity=20
}
}


function highlightit(cur2){
	 if (isie==true)
 {
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=5
else if (window.highlighting)
clearInterval(highlighting)
}
}

function lowlightit(cur2){
	 if (isie==true)
 {
if (cur2.filters.alpha.opacity>20)
cur2.filters.alpha.opacity-=5
else if (window.lowlighting)
clearInterval(lowlighting)
}
}

//-->
