// pre-load main navigation rollover images

if (document.images) {

  buttonBHome_on = new Image(); buttonBHome_off = new Image(); 
  buttonCHome_on = new Image(); buttonCHome_off = new Image();
  buttonD_on = new Image(); buttonD_off = new Image();
  buttonE_on = new Image(); buttonE_off = new Image();
  buttonF_on = new Image(); buttonF_off = new Image();

  buttonBHome_on.src = "/lib/img/nav/buttonBOnHome.gif"; buttonBHome_off.src = "/lib/img/nav/buttonBOffHome.gif";
  buttonCHome_on.src = "/lib/img/nav/buttonCOnHome.gif"; buttonCHome_off.src = "/lib/img/nav/buttonCOffHome.gif";
  buttonD_on.src = "/lib/img/nav/buttonDOn.gif"; buttonD_off.src = "/lib/img/nav/buttonDOff.gif";
  buttonE_on.src = "/lib/img/nav/buttonEOn.gif"; buttonE_off.src = "/lib/img/nav/buttonEOff.gif";
  buttonF_on.src = "/lib/img/nav/buttonFOn.gif"; buttonF_off.src = "/lib/img/nav/buttonFOff.gif";
	
}

// rollover functions

function on(imageName) {
        if (document.images) document[imageName].src = eval(imageName + "_on.src");
}

function off(imageName) {
        if (document.images) document[imageName].src = eval(imageName + "_off.src");
}

