
<!--
function loadpage() {

          index1 = 0;
          listofimages = new Array(4);
          listofimages[0] = new Image(107,28)
          listofimages[0].src = "images/citibank_logo1.gif"
          listofimages[1] = new Image(76,30)
          listofimages[1].src = "images/colonial.jpg"
          listofimages[2] = new Image(114,30)
          listofimages[2].src = "images/stgeorge_logo1.gif"
		  listofimages[3] = new Image(140,30)
          listofimages[3].src = "images/westpac_logo.gif"
		  listofimages[4] = new Image(150,59)
          listofimages[4].src = "images/suncorp_logo.gif"
		  listofimages[5] = new Image(142,67)
          listofimages[5].src = "images/ge.jpg"

          thetimer = setTimeout("changeimage()", 2000);
}


function changeimage(){

          index1 = index1 + 1
          if (index1 == "6") {
                index1 = 0
          }


		  imagesource = listofimages[index1].src
          window.document.banner1.src = imagesource


          thetimer = setTimeout("changeimage()", 1500);
}


function changepage() {

          if (index1 == 0) {
                newlocation = "http://www.access.wvu.edu/itrc/"
          }
          else if (index1 == 1) {
                newlocation = "http://www.wvu.edu"
          }
          else if (index1 == 2) {
                newlocation = "http://www.oit.wvu.edu"
          }


           location = newlocation
}
-->