// JavaScript Document

function Go(){return};

function changeColor(tableColor, AaColor, overout) {
	var temp = document.getElementById(AaColor);

	switch (overout) {
		case "over":
			tableColor.style.background = '#F5D0C6';
			temp.style.color = '#3A3A3A';
			temp.style.textDecoration = 'underline';
			
			break;
		case "out":
			tableColor.style.background = 'none';
			temp.style.color = '#ED5925'; 
			temp.style.textDecoration = 'none';
			}
			
	}
			
