var LoadAdverts = function() {

    index1 = 0;
    listofimages = new Array(8);
    listofimages[0] = new Image();
    listofimages[0].src = "/images/layouts/ads/homepagelargead2.jpg";
    listofimages[1] = new Image();
    listofimages[1].src = "/images/layouts/ads/homepagelargead2.jpg";
    listofimages[2] = new Image();
    listofimages[2].src = "/images/layouts/ads/homepagelargead3.jpg";
    listofimages[3] = new Image();
    listofimages[3].src = "/images/layouts/ads/homepagelargead3.jpg";
    listofimages[4] = new Image();
    listofimages[4].src = "/images/layouts/ads/part-time-homepagelarge-09.jpg";
    listofimages[5] = new Image();
    listofimages[5].src = "/images/layouts/ads/short-homepagelarge-09.jpg";
    listofimages[6] = new Image();
    listofimages[6].src = "/images/layouts/ads/homepagelargead1.jpg";
    listofimages[7] = new Image();
    listofimages[7].src = "/images/layouts/ads/homepagelargead1.jpg";

    thetimer = setTimeout("changeimage()", 3000);
}

function changeimage(){

    index1 = index1 + 1;
    if (index1 == "8") {

        index1 = 0 ;

    }
    imagesource = listofimages[index1].src;
    document.getElementById('banner1').src = imagesource;
    
    if (index1 == 0) {

        newlocation = "/Pages/Further_Education/Further-Education-Subjects" ;

    }
    else if (index1 == 1) {

        newlocation =  "/Pages/Further_Education/Further-Education-Subjects" ;

    }
    else if (index1 == 2) {

        newlocation = "/Pages/Employers" ;

    }
    else if (index1 == 3) {

        newlocation = "/Pages/Employers" ;

    }
     else if (index1 == 4) {

        newlocation = "/?page=part-time-study" ;

    }
    
    else if (index1 == 5) {

        newlocation = "/Pages/Short_Courses/Short-Courses-Leisure" ;

    }
    
    else if (index1 == 6) {

        newlocation = "/Pages/Higher_Education/Higher-Education-Subjects" ;

    }
    
    else if (index1 == 7) {

        newlocation = "/Pages/Higher_Education/Higher-Education-Subjects" ;

    }
    
    document.getElementById('banner1link').href = newlocation;

    thetimer = setTimeout("changeimage()", 3000);

}

addEvent(LoadAdverts);

