// JavaScript Document
// JavaScript Document

bName = navigator.appName;

bVer = parseInt(navigator.appVersion);

if ((bName == "Netscape" && bVer >= 3) ||

(bName == "Microsoft Internet Explorer" && bVer >= 4)) br = "n3";

else br = "n2";



if (br == "n3") {

img1on = new Image( );

img1on.src  = "images/am2009meeting_image_2.jpg";




img1off = new Image( );

img1off.src  = "images/am2009meeting_image.jpg";



}



function imgAct(imgName) {

if (br == "n3") {

document[imgName].src = eval(imgName + "on.src");

}

}



function imgInact(imgName) {

if (br == "n3") {

document[imgName].src = eval(imgName + "off.src");

}

}




<!-- Begin
// 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/random_burger.jpg'
theImages[1] = 'images/random_fish.jpg'
theImages[2] = 'images/random_salad.jpg'
theImages[3] = 'images/random_dip.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 -->




