function image() {

};

 

image = new image();

number = 0;

 

// imageArray

image[number++] = "<img src='http://phillips3.com/Emerson/Images/School/emerson_in_getttysburg.jpg' width='350' height='295' border='0'>"

image[number++] = "<img src='http://phillips3.com/Emerson/Images/Soccer/img_1595.jpg' width='350' height='295' border='0'>"

image[number++] = "<img src='http://phillips3.com/Emerson/Images/Soccer/img_1604.jpg' width='350' height='295' border='0'>"

image[number++] = "<img src='http://phillips3.com/Emerson/Images/Soccer/img_1605.jpg' width='350' height='295' border='0'>"


// keep adding items here...

 

increment = Math.floor(Math.random() * number);

 

document.write(image[increment]);

 

//-->

