function navOn(img)
{
	img = EL(img);
	
	if(img.src)
	{
		img.src = img.src.replace("-off", "-on");
	}
	else
	{
		img.style.filter = img.style.filter.replace("-off", "-on");
	}
	
	
}

function navOff(img)
{
	img = EL(img);
	
	if(img.src)
	{
		img.src = img.src.replace("-on", "-off");
	}
	else
	{
		img.style.filter = img.style.filter.replace("-on", "-off");
	}
}
