function changeColorLeft(obj,lnk)
{
	obj.style.backgroundColor="#000033";
	lnk.style.color="white";
	obj.style.backgroundImage="";
}
function resetColorLeft(obj,lnk)
{
	obj.style.backgroundColor="";
	lnk.style.color="black";
}
