// JavaScript Document

function cambia(id){
	document.getElementById(id).style.backgroundColor= '#7c0000';
}
function vuelve(id){
	document.getElementById(id).style.backgroundColor= 'transparent';
} 
