function nav_img_swap(id,index,bOver)
{
	theEl = document.getElementById(id);
	theEl.src = (bOver) ? overs[index].src : imgs[index].src;
}
function img_swap(id,img)
{
	theEl = document.getElementById(id);
	theEl.src = img;
}
