function over(obj)
{
	obj.style.color = '#ff6600';
	obj.style.backgroundColor = '#f7f7f7';
}
function out(obj)
{
	obj.style.color = '';
	obj.style.backgroundColor = '';
}
function shift(id)
{
	var obj = document.getElementById(id);
	if (obj.style.display == 'none')
	{
		obj.style.display = 'inline';
	}
	else
	{
		obj.style.display = 'none';
	}
}