var prevColor;

function omover(_this)
{
	prevColor = _this.style.backgroundColor;
	_this.style.backgroundColor = '#FFC45E';//'#FBEEE8';
}

function omout(_this)
{
	_this.style.backgroundColor = prevColor;
}
		
