﻿var bg_old;

function onObjOver(o, c)
{
	bg_old = o.style.backgroundColor;
	o.style.backgroundColor = c;
	o.style.cursor = 'hand';
}

function onObjOut(o)
{
	o.style.backgroundColor = bg_old;
}
