if (document.images) {            // Active Images
            Home_on = new Image();      
            Home_on.src = "Home-Button_on.png";
            Home_off = new Image(); 
            Home_off.src = "Home-Button_off.png";
            Home_down = new Image(); 
            Home_down.src = "Home-Button_down.png";

            Resume_on = new Image();      
            Resume_on.src = "Resume-Button_on.png";
            Resume_off = new Image(); 
            Resume_off.src = "Resume-Button_off.png";
            Resume_down = new Image(); 
            Resume_down.src = "Resume-Button_down.png";

            News_on = new Image();      
            News_on.src = "News-Button_on.png";
            News_off = new Image(); 
            News_off.src = "News-Button_off.png";
			News_down = new Image(); 
            News_down.src = "News-Button_down.png";

			Bio_on = new Image();      
            Bio_on.src = "Bio-Button_on.png";
            Bio_off = new Image(); 
            Bio_off.src = "Bio-Button_off.png";
			Bio_down = new Image(); 
            Bio_down.src = "Bio-Button_down.png";

            Pictures_on = new Image();      
            Pictures_on.src = "Pictures-Button_on.png";
            Pictures_off = new Image(); 
            Pictures_off.src = "Pictures-Button_off.png";
			Pictures_down = new Image(); 
            Pictures_down.src = "Pictures-Button_down.png";

            Creed_on = new Image();      
            Creed_on.src = "Creed-Button_on.png";
            Creed_off = new Image(); 
            Creed_off.src = "Creed-Button_off.png";
			Creed_down = new Image(); 
            Creed_down.src = "Creed-Button_down.png";

            Reviews_on = new Image();      
            Reviews_on.src = "Reviews-Button_on.png";
            Reviews_off = new Image(); 
            Reviews_off.src = "Reviews-Button_off.png";
			Reviews_down = new Image(); 
            Reviews_down.src = "Reviews-Button_down.png";

            Contact_on = new Image();      
            Contact_on.src = "Contact-Button_on.png";
            Contact_off = new Image(); 
            Contact_off.src = "Contact-Button_off.png";
			Contact_down = new Image(); 
            Contact_down.src = "Contact-Button_down.png";

            Links_on = new Image();      
            Links_on.src = "Links-Button_on.png";
            Links_off = new Image(); 
            Links_off.src = "Links-Button_off.png";
			Links_down = new Image(); 
            Links_down.src = "Links-Button_down.png";
}

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

function imgDown(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "down.src");
        }
}


document.write('<table width="800" border="0">')
document.write('    <tr>')
document.write('      <td width="80"><a href="index.htm" onMouseOver="imgOn(\'Home_\')" onMouseOut="imgOff(\'Home_\')" onMouseDown="imgDown(\'Home_\')"><img name="Home_" src="Home-Button_off.png"  width="105" border="0"></a></td>')
document.write('      <td width="80"><a href="Geoff%20Trubiak%20Resume.htm" onMouseOver="imgOn(\'Resume_\')" onMouseOut="imgOff(\'Resume_\')" onMouseDown="imgDown(\'Resume_\')"><img name="Resume_" src="Resume-Button_off.png" width="105"  border="0"></a></td>')
document.write('      <td width="80"><a href="Geoff%20Trubiak%20News.htm" onMouseOver="imgOn(\'News_\')" onMouseOut="imgOff(\'News_\')" onMouseDown="imgDown(\'News_\')"><img name="News_" src="News-Button_off.png" width="105"  border="0"></a></td>')
document.write('      <td width="80"><a href="Geoff%20Trubiak%20Bio.htm" onMouseOver="imgOn(\'Bio_\')" onMouseOut="imgOff(\'Bio_\')" onMouseDown="imgDown(\'Bio_\')"><img name="Bio_" src="Bio-Button_off.png" width="105"  border="0"></a></td>')
document.write('      <td width="80"><a href="Geoff%20Trubiak%20Pictures2.htm" onMouseOver="imgOn(\'Pictures_\')" onMouseOut="imgOff(\'Pictures_\')" onMouseDown="imgDown(\'Pictures_\')"><img name="Pictures_" src="Pictures-Button_off.png"  width="105" border="0"></a></td>')
document.write('      <td width="80"><a href="Geoff%20Trubiak%20Creed.htm" onMouseOver="imgOn(\'Creed_\')" onMouseOut="imgOff(\'Creed_\')" onMouseDown="imgDown(\'Creed_\')"><img name="Creed_" src="Creed-Button_off.png" width="105"  border="0"></a></td>')
//document.write('      <td width="80"><a href="Geoff%20Trubiak%20Reviews.htm" onMouseOver="imgOn(\'Reviews_\')" onMouseOut="imgOff(\'Reviews_\')" onMouseDown="imgDown(\'Reviews_\')"><img name="Reviews_" src="Reviews-Button_off.png" width="105"  border="0"></a></td>')
document.write('      <td width="80"><a href="Geoff%20Trubiak%20Contact.htm" onMouseOver="imgOn(\'Contact_\')" onMouseOut="imgOff(\'Contact_\')" onMouseDown="imgDown(\'Contact_\')"><img name="Contact_" src="Contact-Button_off.png" width="105"  border="0"></a></td>')
document.write('      <td width="80"><a href="Geoff Trubiak Links.htm" onMouseOver="imgOn(\'Links_\')" onMouseOut="imgOff(\'Links_\')" onMouseDown="imgDown(\'Links_\')"><img name="Links_" src="Links-Button_off.png" width="105"  border="0"></a></td>')
document.write('    </tr>')
document.write('  </table>')