// Top Navs
   
homeon = new Image();
  homeon.src = "images/nav_homeOver.gif";
homeoff = new Image();
  homeoff.src = "images/nav_home.gif";
   
companyon = new Image();
  companyon.src = "images/nav_companyOver.gif";
companyoff = new Image();
  companyoff.src = "images/nav_company.gif";
  
innovationon = new Image();
  innovationon.src = "images/nav_innovationOver.gif";
innovationoff = new Image();
  innovationoff.src = "images/nav_innovation.gif";
  
newson = new Image();
  newson.src = "images/nav_newsOver.gif";
newsoff = new Image();
  newsoff.src = "images/nav_news.gif";
  
contacton = new Image();
  contacton.src = "images/nav_contactOver.gif";
contactoff = new Image();
  contactoff.src = "images/nav_contact.gif";
  

step1on = new Image();
  step1on.src = "images/why_step1_over.gif";
step1off = new Image();
  step1off.src = "images/why_step1.gif";
  
 step2on = new Image();
  step2on.src = "images/why_step2_over.gif";
step2off = new Image();
  step2off.src = "images/why_step2.gif";
  
step3on = new Image();
  step3on.src = "images/why_step3_over.gif";
step3off = new Image();
  step3off.src = "images/why_step3.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;
        }
