<!-- Img Swap //-->

homeon = new Image();
  homeon.src = "images/nav_home_over.gif";
homeoff = new Image();
  homeoff.src = "images/nav_home.gif";
  
overviewon = new Image();
  overviewon.src = "images/nav_overview_over.gif";
overviewoff = new Image();
  overviewoff.src = "images/nav_overview.gif";
  
 solutionson = new Image();
  solutionson.src = "images/nav_solutions_over.gif";
solutionsoff = new Image();
  solutionsoff.src = "images/nav_solutions.gif";
  
 advertiseon = new Image();
  advertiseon.src = "images/nav_advertise_over.gif";
advertiseoff = new Image();
  advertiseoff.src = "images/nav_advertise.gif";
  
 abouton = new Image();
  abouton.src = "images/nav_about_over.gif";
aboutoff = new Image();
  aboutoff.src = "images/nav_about.gif";
  
 contacton = new Image();
  contacton.src = "images/nav_contact_over.gif";
contactoff = new Image();
  contactoff.src = "images/nav_contact.gif";
  
function stopError() {
	return true;
}
window.onerror=stopError;

function On(imgName) {
        imgOn = eval(imgName + "on.src");
        document [imgName].src = imgOn;
        }
function Off(imgName) {
        imgOff = eval(imgName + "off.src");
        document [imgName].src = imgOff;
        }

