function changeColor(x)
{
	x.style.backgroundColor= "DADADA";
	x.style.color= "40a060";
}

function reChangeColor(x)
{
	x.style.backgroundColor= "E5E5E5";
	x.style.color= "000000";
}

