
function loadpage() { 
index1 = 0;
listofimages = new Array(4);
listofimages[0] = new Image(900,150)
listofimages[0].src = "images/graphic.jpg"
listofimages[1] = new Image(900,150)
listofimages[1].src = "images/services.jpg"
listofimages[2] = new Image(900,150)
listofimages[2].src = "images/ecommerce.jpg"
listofimages[3] = new Image(900,150)
listofimages[3].src = "images/hosting.jpg"

thetimer = setTimeout("changeimage()", 15000);

} 

function changeimage(){ 
index1 = index1 + 1
if (index1 == "4") { 
index1 = 0 
} 
imagesource = listofimages[index1].src
window.document.banner1.src = imagesource

thetimer = setTimeout("changeimage()", 10500);

} 

function changepage() { 
if (index1 == 0) { 
newlocation = "services.php" 
}
else if (index1 == 1) { 
newlocation = "#" 
}
else if (index1 == 2) { 
newlocation = "#" 
}
else if (index1 == 3) { 
newlocation = "#" 
}
location = newlocation 
} 
