function Highlight(){


var TOP = "top"
var SUB = "sub";
var doc = document.getElementById(id).style;
var docT = document.getElementById(id +"T").style;




if(type == TOP){
doc.backgroundColor="#ffffff";
docT.color="#666666";
docT.backgroundColor="#ffffff";

}


else if(type == SUB){
doc.backgroundColor="#adb4c7";
docT.color="#333333";
docT.backgroundColor="#adb4c7";
}


} 



