
function makeYellow() {
	event.srcElement.style.background = '#FFFF80';
}
function removeYellow() {
	event.srcElement.style.background = 'White';
}
