function swapNavImg(obj)
{
	temp = obj.src.split('/');
	oldImg = temp[temp.length - 1];
	
	if(oldImg.substring(oldImg.length - 6, oldImg.length - 4) == 'Up')
	{
		obj.src = 'images/' + oldImg.replace('Up', 'Ov');
	}
	else
	{
		obj.src = 'images/' + oldImg.replace('Ov', 'Up');
	}
}