<!--
var htImages = new Array();
htImages[0] = '/environment/images/ht_random/HT_sun1_top.gif'
htImages[1] = '/environment/images/ht_random/HT_sun2_top.gif'
htImages[2] = '/environment/images/ht_random/HT_sun3_top.gif'
htImages[3] = '/environment/images/ht_random/HT_sun4_top.gif'
htImages[4] = '/environment/images/ht_random/HT_sun5_top.gif'
htImages[5] = '/environment/images/ht_random/HT_sun6_top.gif'
htImages[6] = '/environment/images/ht_random/HT_sun7_top.jpg'
htImages[7] = '/environment/images/ht_random/HT_sun8_top.gif'
htImages[8] = '/environment/images/ht_random/HT_chilies_top.jpg'

var j = 0;
var q = htImages.length;
var htBuffer = new Array();
for (i= 0; i<q; i++){
   htBuffer[i] = new Image()
   htBuffer[i].src = htImages[i]
}
var whichHT = Math.round(Math.random()*(q-1));
function showHotImageTop(){
	document.write('<img src="'+htImages[whichHT]+'" alt="Environmental Hot Topics" width="113" height="126" border="0">');
}
// -->
