if (document.images) {
   var ImgOver = new Array();
   ImgOver[0] = new Image();
   ImgOver[1] = new Image();
   ImgOver[2] = new Image();
   ImgOver[3] = new Image();
   ImgOver[4] = new Image();
   ImgOver[5] = new Image();
   ImgOver[6] = new Image();
   ImgOver[7] = new Image();
   ImgOver[0].src = "/themes/2009/9/dot-over.png";
   ImgOver[1].src = "/themes/2009/9/photography-over.png";
   ImgOver[2].src = "/themes/2009/9/videos-over.png";
   ImgOver[3].src = "/themes/2009/9/web-log-over.png";
   ImgOver[4].src = "/themes/2009/9/contact-over.png";
   ImgOver[5].src = "/themes/2009/9/education-over.png";
   ImgOver[6].src = "/themes/2009/9/retired-over.png";
   ImgOver[7].src = "/themes/2009/9/about-me-over.png";

   var ImgOut = new Array();
   ImgOut[0] = new Image();
   ImgOut[1] = new Image();
   ImgOut[2] = new Image();
   ImgOut[3] = new Image();
   ImgOut[4] = new Image();
   ImgOut[5] = new Image();
   ImgOut[6] = new Image();
   ImgOut[7] = new Image();
   ImgOut[0].src = "/themes/2009/9/dot.png";
   ImgOut[1].src = "/themes/2009/9/photography.png";
   ImgOut[2].src = "/themes/2009/9/videos.png";
   ImgOut[3].src = "/themes/2009/9/web-log.png";
   ImgOut[4].src = "/themes/2009/9/contact.png";
   ImgOut[5].src = "/themes/2009/9/education.png";
   ImgOut[6].src = "/themes/2009/9/retired.png";
   ImgOut[7].src = "/themes/2009/9/about-me.png";
}

function RollOver(i) {
   if (document.images) document.images[i].src = ImgOver[i].src;
}
function RollOut(i) {
   if (document.images) document.images[i].src = ImgOut[i].src;
}
