function cambiaFondo(obj){
	document.getElementById("b"+obj).className="BotonActual";
	document.getElementById("b"+obj+"i").src="./img/botonOrilla1.2.jpg";
	document.getElementById("b"+obj+"d").src="./img/botonOrilla2.2.jpg";
}

function regresaFondo(obj){
	document.getElementById("b"+obj).className="Boton";
	document.getElementById("b"+obj+"i").src="./img/botonOrilla1.jpg";
	document.getElementById("b"+obj+"d").src="./img/botonOrilla2.jpg";
}