	<!--
	
	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] = 'images/banners/34.jpg'
theImages[1] = 'images/banners/3.jpg'
theImages[2] = 'images/banners/7.jpg'
theImages[3] = 'images/banners/10.jpg'
theImages[4] = 'images/banners/11.jpg'
theImages[5] = 'images/banners/1.jpg'
theImages[6] = 'images/banners/23.jpg'
theImages[7] = 'images/banners/24.jpg'
theImages[8] = 'images/banners/27.jpg'
theImages[9] = 'images/banners/30.jpg'
theImages[10] = 'images/banners/32.jpg'
theImages[11] = 'images/banners/33.jpg'
theImages[12] = 'images/banners/15.jpg'

// 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 -->


