﻿

function imgMouseover(imgID, imgSrc, aText)
 {
      document.getElementById(imgID).src = imgSrc + "hover.png";
      
      document.getElementById("a"+imgID).style.textDecoration = "underline";
      
 }
function imgMouseout(imgID, imgSrc, aText)
 {
    document.getElementById(imgID).src = imgSrc + "link.png";
    
    document.getElementById("a"+imgID).style.textDecoration = "none";
    
 }
function mouseOverUnderline(imgID) {
    document.getElementById("a"+imgID).style.textDecoration = "underline";
}
function mouseOutNone(imgID) {
    document.getElementById("a"+imgID).style.textDecoration = "none";
}