function myOver(obj)
{
	obj.style.color='#ffffff';	
}

function myOut(obj)
{
	obj.style.color='#677788';
}

function myClick(obj,path)
{
	myOut(obj);
	document.location.href='/'+path;
}