function navOver (div)
{
	div.style.backgroundPosition = 'top right';
	div.style.cursor = 'hand';
	div.style.cursor = 'pointer';
}
function navOut (div)
{
	div.style.backgroundPosition = 'top left';
}