// Top Navs
   
homeon = new Image();
  homeon.src = "images/nav_homeOver.gif";
homeoff = new Image();
  homeoff.src = "images/nav_home.gif";
   
opportunityon = new Image();
  opportunityon.src = "images/nav_opportunityOver.gif";
opportunityoff = new Image();
  opportunityoff.src = "images/nav_opportunity.gif";
     
resourceson = new Image();
  resourceson.src = "images/nav_resourcesOver.gif";
resourcesoff = new Image();
  resourcesoff.src = "images/nav_resources.gif";
  
contacton = new Image();
  contacton.src = "images/nav_contactOver.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;
        }
