<!--
  /*
   * Pre-load the specified image.  This loads the image as the page
   * loads, so that when it is used later (such as for a mouseover effect),
   * the image has already been loaded.
   */
  function preloadImage(imageName) {
		var image = new Image();
		image.src = imageName;
  }

  if (document.images) {
  preloadImage("/swifa/images/swifa.jpg");
  preloadImage("/swifa/images/swifaExt.jpg");
  preloadImage("/swifa/images/leftnavswords");  
  preloadImage("/swifa/images/swifabottom");
  }  
 
// -->


