  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_normal.gif";
	
	topnav_buffalo_on = new Image();
    topnav_buffalo_on.src = "images/topnav_buffalo_highlighted.gif";
	topnav_buffalo_off = new Image();
    topnav_buffalo_off.src = "images/topnav_buffalo_normal.gif";
	
	topnav_horses_on = new Image();
    topnav_horses_on.src = "images/topnav_horses_highlighted.gif";
	topnav_horses_off = new Image();
    topnav_horses_off.src = "images/topnav_horses_normal.gif";
	
	topnav_dogs_on = new Image();
    topnav_dogs_on.src = "images/topnav_dogs_highlighted.gif";
	topnav_dogs_off = new Image();
    topnav_dogs_off.src = "images/topnav_dogs_normal.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_normal.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_normal.gif";
	
	topnav_links_on = new Image();
    topnav_links_on.src = "images/topnav_links_highlighted.gif";
	topnav_links_off = new Image();
    topnav_links_off.src = "images/topnav_links_normal.gif";
  }
  
  function swap(imageName, action) {
    if (document.images) {
      document[imageName].src = eval(imageName + "_" + action + ".src");
    }
  }