function highlight(id1,id2){
document.getElementById(id1).style.backgroundColor="#997"
document.getElementById(id1).style.filter="alpha(opacity=80)"
document.getElementById(id1).style.opacity="0.8"
document.getElementById(id1).style.MozOpacity="0.8"
document.getElementById(id2).style.color="#000"
}

function fade(id1,id2){
document.getElementById(id1).style.backgroundColor="#666"
document.getElementById(id1).style.filter="alpha(opacity=100)"
document.getElementById(id1).style.opacity="1"
document.getElementById(id1).style.MozOpacity="1"
document.getElementById(id2).style.color="#ffc"
}

