var paddingTop, paddingBottom, paddingLeft, paddingRight, backgroundColor;
function see(item)
{
	backgroundColor = item.style.backgroundColor;
	item.style.backgroundColor = "#FFFF99";
}
function saw(item)
{
	item.style.backgroundColor = backgroundColor;
}

function over(item)
{
	item.style.backgroundColor="#C8E0C8";
	item.style.backgroundColor="#C0D8C0";
	item.style.color="#000000";
	item.style.borderColor="#A0A0A0";
	item.style.borderStyle="inset";

	paddingTop    = item.style.paddingTop;
	paddingBottom = item.style.paddingBottom;
	paddingLeft   = item.style.paddingLeft;
	paddingRight  = item.style.paddingRight;

	item.style.paddingTop=2;
	item.style.paddingBottom=0;
	item.style.paddingLeft=2;
	item.style.paddingRight=0;
	return true;
}

function out(item)
{
	item.style.backgroundColor="#D8F0D8";
	item.style.color="#000000";
	item.style.borderColor="#F0F0F0";
	item.style.borderStyle="outset";
	item.style.paddingTop    = paddingTop;
	item.style.paddingBottom = paddingBottom;
	item.style.paddingLeft   = paddingLeft;
	item.style.paddingRight  = paddingRight;
	return true;
}

function overhere(item)
{
	item.style.backgroundColor="#C8E0C8";
	item.style.backgroundColor="#C0D8C0";
	item.style.color="#000000";
	item.style.borderColor="#A0A0A0";
	item.style.borderStyle="inset";
	item.style.paddingTop=2;
	item.style.paddingBottom=0;
	return true;
}

function outtahere(item)
{
	item.style.backgroundColor="#D8F0D8";
	item.style.color="#000000";
	item.style.borderColor="#F0F0F0";
	item.style.borderStyle="outset";
	item.style.paddingTop=1;
	item.style.paddingBottom=1;
	return true;
}