 /**
   * 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/news.jpg",
			"images/news_on.jpg",
			"images/news_rt.gif",
			"images/apply.jpg",
			"images/apply_over.jpg",
			"images/apply_rt.gif",
			"images/contact.jpg",
			"images/contact_over.jpg",
			"images/contact_rt.gif",
			"images/search.jpg",
			"images/search_over.jpg",
			"images/search_rt.gif",
			"images/home.jpg",
			"images/home_over.jpg",
			"images/home_rt.gif",
			"images/blank_rt.gif",
			"images/ln0101-powerpoint.gif",
			"images/ln0101-powerpoint_over.gif",
			"images/ln0102-technology.gif",
			"images/ln0102-technology_over.gif",
			"images/ln0103-interviewing.gif",
			"images/ln0103-interviewing_over.gif",
			"images/ln0104-howto.gif",
			"images/ln0104-howto_over.gif",
			"images/ln0201-personal.gif",
			"images/ln0201-personal_over.gif",
			"images/ln0202-speak.gif",
			"images/ln0202-speak_over.gif",
			"images/ln0203-spell.gif",
			"images/ln0203-spell_over.gif",
			"images/ln0204-sentence.gif",
			"images/ln0204-sentence_over.gif",
			"images/ln0205-grammer.gif",
			"images/ln0205-grammer_over.gif",
			"images/ln0301-documents.gif",
			"images/ln0301-documents_over.gif",
			"images/ln0302-business.gif",
			"images/ln0302-business_over.gif",
			"images/bookcover.jpg",			
			"images/ln-h1-textbook.gif",		
			"images/ln-h2-skill.gif",								
			"images/ln-h3-knowledge.gif"
		);
	}
   }
