function setbg(id){
  document.getElementById(id).style.backgroundColor= '#7d270a';
  document.getElementById(id).style.cursor= 'Pointer';
}

function outbg(id){
	document.getElementById(id).style.backgroundColor = '#933A00';
}

function setbgv(id){
  document.getElementById(id).style.backgroundColor= '#009900';
  document.getElementById(id).style.cursor= 'Pointer';
}

function outbgv(id){
	document.getElementById(id).style.backgroundColor = '#006600';
}
