 /**
   * PRELOAD-CHANGE
   * This bit of code calls the preload image routine.  The
   * user should change this per site.  The list supplied is
   * a comma delimited (separated) list of image file names.
   * The file names should be surrounded by double quotes " (shift+')
   * and all but the last one have a comma appended to them.
   * 
   * Example: (this example tells the pre-loader to load 4 images.
   *
   *  var imgs = new preloadImages(
   *                             "image1.jpg",
   *                             "image1_over.jpg",
   *                             "image2.jpg",
   *                             "image2_over.jpg"
   *                             );
   * 
   * The user should specify both the rollover and the normal state 
   * image for rollovers.  
   * 
   * The user should also specify any menu images
   * that may "pop-up" on rollover as well as any graphics that are not
   * visible when the page is first displayed.
   *
   * Finally, the user must also specify the relative path to the images, otherwise,
   * the image will not be preloaded correctly.
   * 
   */

//   function initPreloader() {
   function initLoader() {

	if (n3) {
		var imgs = new preloadImages(
			"navbarimages/topnavbar_01.gif",
			"navbarimages/topnavbar_01_over.gif",
			"navbarimages/topnavbar_02.gif",
			"navbarimages/topnavbar_02_over.gif",
			"navbarimages/topnavbar_03.gif",
			"navbarimages/topnavbar_03_over.gif",
			"navbarimages/topnavbar_04.gif",
			"navbarimages/topnavbar_04_over.gif",
			"navbarimages/topnavbar_05.gif",
			"navbarimages/topnavbar_05_over.gif",
			"navbarimages/soffer_navbar_01.gif",
			"navbarimages/soffer_navbar_01_over.gif",
			"navbarimages/soffer_navbar_02.gif",
			"navbarimages/soffer_navbar_02_over.gif",
			"navbarimages/soffer_navbar_03.gif",
			"navbarimages/soffer_navbar_03_over.gif",
			"navbarimages/soffer_navbar_04.gif",
			"navbarimages/soffer_navbar_04_over.gif"
		);
	}
   }
