	<!--
	
	function getNYSBannerPics() { 
	
		numberOfBannerPics = 4;                                 // how many pictures in banner
		aBannerPics=new Array(numberOfBannerPics);  // this will store the 4 randomized images
		numberOfAvailablePics = 50;                           // how many pictures available in pool
		folderName = "nysbannerpics";                        // sub folder name where banner pictures live (pool)
		cnt = 0;                                                       // keep count of selected graphics
				
		while (cnt < numberOfBannerPics) {               // keep looping until we have all unique pictures 
			rnd= Math.round(Math.random()*(numberOfAvailablePics - 1));  // get a random number between 0 and number of pics minus 1
			picExists = false;                                       // initialize pic found boolean
			for (ii=0;ii<cnt;ii++) {                             // scan array to see if picture exists
				if (aBannerPics[ii] == rnd) {                 // if pic already selected, set boolean to true
					picExists = true;
				}
			}
			if (!picExists) { 										// if the picture has not been selected yet, then select it
				aBannerPics[cnt] = rnd;                      // assign random number
				img = eval("pic" + cnt);                     // create handle to image tag
				img.src = folderName + "/" + rnd + ".gif"; // assign graphic to image source
				cnt++;				                                // up the counter by one				
			}
		}
  }
//-->

<!-- Begin LARGE PIC
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'nyslrgbannerpics/slice2_02.gif'
theImages[1] = 'nyslrgbannerpics/slice2_02_a.gif'
theImages[2] = 'nyslrgbannerpics/slice2_02_b.gif'
theImages[3] = 'nyslrgbannerpics/slice2_02_c.gif'
theImages[4] = 'nyslrgbannerpics/slice2_02_d.gif'
theImages[5] = 'nyslrgbannerpics/slice2_02_e.gif'
theImages[6] = 'nyslrgbannerpics/slice2_02_f.gif'
theImages[7] = 'nyslrgbannerpics/slice2_02_g.gif'
theImages[8] = 'nyslrgbannerpics/slice2_02_h.gif'
theImages[9] = 'nyslrgbannerpics/slice2_02_i.gif'
theImages[10] = 'nyslrgbannerpics/slice2_02_j.gif'
theImages[11] = 'nyslrgbannerpics/slice2_02_k.gif'
theImages[12] = 'nyslrgbannerpics/slice2_02_l.gif'
theImages[13] = 'nyslrgbannerpics/slice2_02_m.gif'
theImages[14] = 'nyslrgbannerpics/slice2_02_n.gif'
theImages[15] = 'nyslrgbannerpics/slice2_02_o.gif'
theImages[16] = 'nyslrgbannerpics/slice2_02_p.gif'
theImages[17] = 'nyslrgbannerpics/slice2_02_q.gif'
theImages[18] = 'nyslrgbannerpics/slice2_02_r.gif'
theImages[19] = 'nyslrgbannerpics/slice2_02_s.gif'
theImages[20] = 'nyslrgbannerpics/slice2_02_t.gif'
theImages[21] = 'nyslrgbannerpics/slice2_02_u.gif'
theImages[22] = 'nyslrgbannerpics/slice2_02_v.gif'
theImages[23] = 'nyslrgbannerpics/slice2_02_w.gif'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

//  End -->


           function quickChange(e,i) {
                       e.src = i;
           }

