 /**
   * 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(
			"../images/about.gif",
			"../images/about_on.gif",
			"../images/research.gif",
			"../images/research_on.gif",
			"../images/calendar.gif",
			"../images/calendar_on.gif",
			"../images/people.gif",
			"../images/people_on.gif",
			"../images/news.gif",
			"../images/news_on.gif",
			"../images/partners.gif",
			"../images/partners_on.gif",
			"../images/capital_campaign.gif",
			"../images/capital_campaign_on.gif"
		);
	}
   }
