function doSubNavOver(obj)
{
	obj.style.cursor = 'pointer';
	obj.style.backgroundPosition = '0px -24px';
}

function doSubNavOut(obj)
{
	obj.style.cursor = 'default';
	obj.style.backgroundPosition = '0px 0px';
}
