function over(id){
document.getElementById(id).style.backgroundColor="#6F6F6F";
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="#4F4F4F";
document.getElementById(id).style.borderLeftWidth="5";
document.getElementById(id).style.borderRightWidth="5";
document.getElementById(id).style.color="black";
		}