<!--
var imgMax  = 5
var imgRand = Math.floor(Math.random() * imgMax);

if(imgRand == 0)       document.write('<img src="http://www2.hawaii.edu/~shawnef/images/headers/1864head.jpg" width=720 height=95>');
else if(imgRand == 1)  document.write('<img src="http://www2.hawaii.edu/~shawnef/images/headers/2772head.jpg" width=720 height=95>');
else if(imgRand == 2)  document.write('<img src="http://www2.hawaii.edu/~shawnef/images/headers/BanteaySrei.jpg" width=720 height=95>');
else if(imgRand == 3)  document.write('<img src="http://www2.hawaii.edu/~shawnef/images/headers/ground.jpg" width=720 height=95>');
else if(imgRand == 4)  document.write('<img src="http://www2.hawaii.edu/~shawnef/images/headers/otherground.jpg" width=720 height=95>');

//-->
