<!--
 function writemail(a,b,c,d) {
  if (d) {
   the_string = "<a href='mailto:"+a+"@"+b+"."+c+"'>"+d+"</a>";
  }
  else {
   the_string = "<a href='mailto:"+a+"@"+b+"."+c+"'>"+a+"@"+b+"."+c+"</a>";
  }
  return (the_string);
 }
 function writemail_map(shape, coords, user, domain) {
  the_string = "<area shape="+shape+" coords="+coords+" href=mailto:"+user+"@"+domain+">";
  return (the_string);
 }
 
var theImages = new Array()

theImages[0] = '/communityrelations/images/slideshow/hpfeature01.jpg'
theImages[1] = '/communityrelations/images/slideshow/hpfeature02.jpg'
theImages[2] = '/communityrelations/images/slideshow/hpfeature03.jpg'
theImages[3] = '/communityrelations/images/slideshow/hpfeature04.jpg'
theImages[4] = '/communityrelations/images/slideshow/hpfeature05.jpg'
theImages[5] = '/communityrelations/images/slideshow/hpfeature06.jpg'

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]+'">');
}
 //-->