// Java Document

<!-- hide script from old browsers

window.onerror = null;

var netscape = 0;

var goodIE = 0;

browserName = navigator.appName.substring(0,8);

browserVer = parseFloat(navigator.appVersion);

if (browserName == "Netscape" && browserVer >= 3)

{ netscape = 1; }

if (browserName == "Microsof" && browserVer >= 4)

{ goodIE = 1; }

// end error trapping code

if (netscape || goodIE) {
//Below is the code that pre-loads the graphics

//These are the large images
      pic1 = new Image();
      pic1.src = "images/Gore.gif";

      pic2 = new Image();
      pic2.src = "images/Gore1.gif";

      pic3 = new Image();
      pic3.src = "images/Gore2.gif";
	  	  
	  pic4 = new Image();
      pic4.src = "images/Gore3.gif";
	  
	  pic5 = new Image();
      pic5.src = "images/Gore4.gif";
	  	  
	  pic6 = new Image();
      pic6.src = "images/Gore5.gif";
	  	  
	  pic7 = new Image();
      pic7.src = "images/Gore6.gif";

//These are the first button graphics
      one = new Image(); 
      one.src = "images/Home_04.gif";      
      oneOn = new Image();
      oneOn.src = "images/HomeOn_04.gif";

//These are the second button graphics
      two = new Image(); 
      two.src = "images/Home_08.gif";
      twoOn = new Image(); 
      twoOn.src = "images/HomeOn_08.gif";

//These are the third button graphics	  
	  three = new Image(); 
      three.src = "images/Home_09.gif";      
      threeOn = new Image();
      threeOn.src = "images/HomeOn_09.gif";

//These are the fourth button graphics
      four = new Image(); 
      four.src = "images/Home_10.gif";
      fourOn = new Image(); 
      fourOn.src = "images/HomeOn_10.gif";

//These are the fifth button graphics
      five = new Image(); 
      five.src = "images/Home_11.gif";
      fiveOn = new Image(); 
      fiveOn.src = "images/HomeOn_11.gif";

//These are the sixth button graphics
      six = new Image(); 
      six.src = "images/Home_12.gif";
      sixOn = new Image(); 
      sixOn.src = "images/HomeOn_12.gif";

}
//This is the function that calls for
//the change in the buttons
function imageChange(imageID,imageName,imageID2,imageName2) {

if (netscape || goodIE) {

document.images[imageID].src = eval(imageName + ".src");
document.images[imageID2].src = eval(imageName2 + ".src");

}}
