
function randomlargeimage() {

images = new Array(5);

images[0] = " <a href='http://vitaip.com/index.html' id='bannerlink'><img src='/RotatingImages/rotating1.png' border='0' id='banner1'></a>";

images[1] = " <a href='http://vitaip.com/index.html' id='bannerlink'><img src='/RotatingImages/rotating2.png' border='0' id='banner1'></a>";

images[2] = " <a href='http://vitaip.com/index.html' id='bannerlink'><img src='/RotatingImages/rotating3.png' border='0' id='banner1'></a>";

images[3] = " <a href='http://vitaip.com/index.html' id='bannerlink'><img src='/RotatingImages/rotating4.png' border='0' id='banner1'></a>";

images[4] = " <a href='http://vitaip.com/index.html' id='bannerlink'><img src='/RotatingImages/rotating5.png' border='0' id='banner1'></a>";

index = Math.floor(Math.random() * images.length);

banners = index + 1;
document.write(images[index]);

}


