
function initJAN02() {
	// Need to initialize arrays of images and captions here:
	showImages = new Array("panfora/images/tour_nav01.gif",
							 "panfora/images/tour_nav02.gif",
							 "panfora/images/tour_sel01.gif",
							 "panfora/images/tour_sel02.gif", 
							 "panfora/images/tour_sel03.gif",
							 "panfora/images/tour_sel04.gif",
							 "panfora/images/tour_sel05.gif",
							 "panfora/images/tour_sel06.gif",
							 "panfora/images/tour_sel07.gif",
							 "panfora/images/tour_sel08.gif");
			
	Captions = new Array("Start Online Tour", "", "", "", "", "", "", "", "", "");

	// HTML for the body and head.

	headTag = "<html><head><title>* * * panFora Online Tour * * *</title>\n<link rel=stylesheet href='../win.css' type='text/css'></head>\n<center>\n";

	Current = -1;

	// Set up short captions
	// shortCap = new Array;
	// makeShortCaps();
	
	// Preload images
	// for (var i=0; i < showImages.length; i++) {
	//	var img = new Image;
	//	img.src = showImages[i];
	// }
	
	// Only preload the first image
	preload[0] = new Image();
	preload[0].src = showImages[0];
}
