  if (document.images) {
    
	topnav_home_on = new Image();
    topnav_home_on.src = "images/topnav_home_highlighted.gif";
	topnav_home_off = new Image();
    topnav_home_off.src = "images/topnav_home.gif";
	
	topnav_about_on = new Image();
    topnav_about_on.src = "images/topnav_about_highlighted.gif";
	topnav_about_off = new Image();
    topnav_about_off.src = "images/topnav_about.gif";
	
	topnav_projects_on = new Image();
    topnav_projects_on.src = "images/topnav_projects_highlighted.gif";
	topnav_projects_off = new Image();
    topnav_projects_off.src = "images/topnav_projects.gif";
	
	topnav_personnel_on = new Image();
    topnav_personnel_on.src = "images/topnav_personnel_highlighted.gif";
	topnav_personnel_off = new Image();
    topnav_personnel_off.src = "images/topnav_personnel.gif";
	
	topnav_contact_on = new Image();
    topnav_contact_on.src = "images/topnav_contact_highlighted.gif";
	topnav_contact_off = new Image();
    topnav_contact_off.src = "images/topnav_contact.gif";
  }
  
  function swap(imageName, action) {
    if (document.images) {
      document[imageName].src = eval(imageName + "_" + action + ".src");
    }
  }