 /**
   * 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.gif",
   *                             "image1_on.gif",
   *                             "image2.gif",
   *                             "image2_on.gif"
   *                             );
   * 
   * 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(
			"/redesign/img/news.gif",
			"/redesign/img/news_on.gif",
			"/redesign/img/news_rt.gif",
			"/redesign/img/apply.gif",
			"/redesign/img/apply_on.gif",
			"/redesign/img/apply_rt.gif",
			"/redesign/img/contact.gif",
			"/redesign/img/contact_on.gif",
			"/redesign/img/contact_rt.gif",
			"/redesign/img/search.gif",
			"/redesign/img/search_on.gif",
			"/redesign/img/search_rt.gif",
			"/redesign/img/home.gif",
			"/redesign/img/home_on.gif",
			"/redesign/img/home_rt.gif",
			"/redesign/img/blank_rt.gif"
		);
	}
   }
