
var Rev_index_js = "$Id: index.js,v 1.3 2004/12/11 18:32:37 ghealton Exp $";


///////////////////////////////////////////////////////////////////////
//
//   Preload Images
//
    arrayImagesSrc = new Array ( 
	"google",
	"yahoo", 
	"about",
	"lycos", 
	"uf", 

	"comics",
	"archive",
	"nj1015", 
	"weather", 
	"anywho", 
	"switchboard", 
	"mapquest",

	"cement",
	"burngif",

	"workhome" );

    arrayImagesList = new Array ();

    for (counter in arrayImagesSrc) {  //
        arrayImagesList[counter] = new Image();
	var path = "/~ghealton/images/" + arrayImagesSrc[counter] 
					+ "_button2.png";

//	document.write( "<!-- preloaded " + path + " -->\n" );
	
        arrayImagesList[counter].src = path;
    }

    document.write( "<!-- images preloaded by " + Rev_index_js + " -->\n" );

// end: index.js
