function over(id){
document.getElementById(id).style.backgroundColor="";
document.getElementById(id).style.borderLeftWidth="3";
document.getElementById(id).style.borderRightWidth="3";
document.getElementById(id).style.color="white";
document.getElementById(id).style.cursor="pointer";
		}


function out(id){
document.getElementById(id).style.backgroundColor="";
document.getElementById(id).style.borderLeftWidth="5";
document.getElementById(id).style.borderRightWidth="5";
document.getElementById(id).style.color="black";
		}
