function mouseOverOn(link){
document.getElementById(link).style.backgroundImage="url('images/"+link+"_mo.png')";
}
function mouseOverOff(link){
document.getElementById(link).style.backgroundImage="url('images/"+link+".png')";
}
function mouseOverText(link,hexcolor){
document.getElementById(link).style.color=hexcolor;
}

