var old_color = '';

function buttonOver(_el)
{
	old_color					= _el.style.backgroundColor;
	_el.style.backgroundColor	= 'white';
}

function buttonOut(_el)
{
	_el.style.backgroundColor	= old_color;
}