
function showBanner() {
   var x=(Math.round(Math.random()*10000))%bannertext.length;
   document.write(bannertext[x]);
}

// you can add as many banner html lines as you wish here.
// each one should start and end with double quotes BUT contain no double quotes.
// all but the last line should be followed by a comma.
bannertext = new Array(
"<img src=/images/home-montage7.jpg width=771 height=99 border=0>",
"<img src=/images/home-montage6.jpg width=771 height=99 border=0>",
"<img src=/images/home-montage5.jpg width=771 height=99 border=0>",
"<img src=/images/home-montage4.jpg width=771 height=99 border=0>",
"<img src=/images/home-montage3.jpg width=771 height=99 border=0>",
"<img src=/images/home-montage2.jpg width=771 height=99 border=0>",
"<img src=/images/home-montage1.jpg width=771 height=99 border=0>"
);
