function randomizeImages() {
	 //var j = 0;
     var p = theImages.length;
     var whichImage = Math.floor( Math.random() * p ); //This will give your 0 - p
     //var preBuffer = new Array()
     //for (i = 0; i < p; i++){
	// YOU NEVER USE preBuffer, you just create it then print the string from theImages[]
	// loading all of these images for no reason was the problem with the search template
     //   preBuffer[i] = new Image();
     //   preBuffer[i].src = theImages[i];
     //var whichImage = Math.round(Math.random()*(p-1));
     document.write('<a href="'+basePath+'admin/banners.html"><img src="'+basePath+theImages[whichImage]+'" height="" width="" border="0" alt="Click to learn more sign language" title="Click to learn more sign language" /></a>');
}

//put this in the place where the sign language stuff is, and then include the height and width above
    //<div id="rotatingImage"><script LANGUAGE="JavaScript">randomizeImages();</script></div>


