// rotating images function
// put names of images you want to show up on the page in this array
var adImages = new Array("web-headers1.gif", "web-headers2.gif", "web-headers3.gif", "web-headers4.gif", "web-headers5.gif", "web-headers6.gif", "web-headers7.gif");
// make the multiplier after Math.random()* the same as number of images
function displayPix()
{
document.write('<img src=' + '/images/banners/' + adImages[Math.floor(Math.random()*7)] + ' alt=""' + ' width="760"' + 'height="162"' + ' border="0"' + '>');
}
// JavaScript Document