// JavaScript Document
function cambiar_fondo(elemento,id){
	elemento.style.backgroundImage="url(imagenes/fondo_menu2.png)";
	document.getElementById(id).style.color="#ffffff";
	
}

function cambiar_fondo2(elemento,id){
	elemento.style.backgroundImage="url(imagenes/fondo_menu.png)";
	document.getElementById(id).style.color="#fff";
}


