// JavaScript Document
// JavaScript Document

//here you place the ids of every element you want.
//colouring id//
function changeColor(id) {
        if (document.getElementById) document.getElementById(id).style.color = '#b87048';
	document.getElementById(id).style.backgroundColor = '#f0d7b4';
}

function changeColormenu(id) {
        if (document.getElementById) document.getElementById(id).style.color = '#d9b5a3';
}

