function DispSelectOver(numId) {
 document['av' + numId].src = 'images/te_arron.jpg';
 if (document.getElementById) {
  document.getElementById('ar' + numId).style.color = '#000000';
 }
}

function DispSelectOut(numId) {
 document['av' + numId].src = 'images/te_arroff.jpg';
 if (document.getElementById) {
  document.getElementById('ar' + numId).style.color = '#555555';
 }
}

