// JavaScript
// Copyright (c) 2005 Donald Lessau
// All rights reserved.

function nav(that, over) {
// 20051204
  if (that.className == 'nav') {
    if (over==1) {that.style.background='#FF9900'} else {that.style.background='#FFF'};
  } else {
    if (over==1) {that.style.background='#FF9900'} else {that.style.background='#FF9900'};
  }
}
function jump(URL) {
  window.location.href=URL;
}

/*
function nav(that, over) {
  alert(that.className);
  if (over==1) {that.style.background='#FF9900'} else {that.style.background='#FFF'};
  }
function navat(that, over) {
  if (over==1) {that.style.background='#FF9900'} else {that.style.background='#FF9900'};
  }
*/


