
function loadpage() { 
index1 = 0;
listofimages = new Array(3);
listofimages[0] = new Image(800,150)
listofimages[0].src = "http://www.theliquidelement.com/images/front_banner.jpg"
listofimages[1] = new Image(800,150)
listofimages[1].src = "http://www.theliquidelement.com/images/front_banner2.jpg"
listofimages[2] = new Image(800,150)
listofimages[2].src = "http://www.theliquidelement.com/images/front_banner3.jpg"


thetimer = setTimeout("changeimage()", 3000);

} 

function changeimage(){ 
index1 = index1 + 1
if (index1 == "3") { 
index1 = 0 
} 
imagesource = listofimages[index1].src
window.document.banner1.src = imagesource

thetimer = setTimeout("changeimage()", 5000);

} 

