var before;
function see(item)
{
	before = item.style.backgroundColor;
	item.style.backgroundColor = "#FFFF80";
}
function saw(item)
{
	item.style.backgroundColor = before;
}