function m_mouseover(obj)
{
	obj.style.borderTop = "solid 3px #fff0f0";
	obj.style.borderLeft = "solid 3px #ffe0e0";
	obj.style.borderRight = "solid 5px #c09090";
	obj.style.borderBottom = "solid 5px #a07070";
	obj.style.background = "#ffe0e0";
}
function m_mouseout(obj)
{
	obj.style.borderTop = "solid 3px #f0f0ff";
	obj.style.borderLeft = "solid 3px #e0e0ff";
	obj.style.borderRight = "solid 5px #9090c0";
	obj.style.borderBottom = "solid 5px #7070a0";
	obj.style.background = "#e0e0ff";
}

function p_mouseover(obj)
{
	obj.style.borderTop = "solid 3px #ffff80";
	obj.style.borderLeft = "solid 3px #ffff50";
	obj.style.borderRight = "solid 5px #c0c030";
	obj.style.borderBottom = "solid 5px #a0a020";
	obj.style.background = "#ffff80";
}
function p_mouseout(obj)
{
	obj.style.borderTop = "solid 3px #ffa0a0";
	obj.style.borderLeft = "solid 3px #ffa0a0";
	obj.style.borderRight = "solid 5px #c05050";
	obj.style.borderBottom = "solid 5px #a04040";
	obj.style.background = "#ffc0c0";
}
