function out(id){
document.getElementById(id).style.background='#3C3D3D';
document.getElementById(id).style.color='';
document.getElementById(id).style.cursor='default';
}
function over(id){
document.getElementById(id).style.background='#777777';
document.getElementById(id).style.color='#000000';
document.getElementById(id).style.cursor='pointer';
}
