//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays
function imageChange()
{
images = new Array(6);

images[0] = "/img/index1.gif";

images[1] = "/img/index2.gif";

images[2] = "/img/index3.gif";
images[3] = "/img/index6.JPG";
images[4] = "/img/index7.JPG";
images[5] = "/img/index8.JPG";



index = Math.floor(Math.random() * images.length);

var theimage = document.getElementById("theimage");
theimage.src = images[index];
}

YAHOO.util.Event.onContentReady("theimage", imageChange);
//done
