﻿function changeColor(myObj)
{
	if (myObj.style.backgroundColor == '')
		{ 
			myObj.style.backgroundColor = '#FCFDD9'; 
		}
	else
		{ 
			myObj.style.backgroundColor = '';  
		}//old color #bfb797
}