function linkOver(obj){
   obj.style.background = "url('underline.gif') top left repeat-x";
   obj.style.color = "#a0a0a0";
}

function linkOut(obj){
   obj.style.background = "url('no_underline.gif') top left repeat-x";
   obj.style.color = "MintCream";
} 
