function colorOver(n) {
	document.getElementById(n).style.backgroundColor='transparent';
}

function colorOff(n) {
	document.getElementById(n).style.backgroundColor='#ECECEC';
}
