// Random Images

images = new Array(6);

images[0] = "<img src='/ChantImages/random/sub_banner/1.jpg' name=random_image width=550 height=123>";
images[1] = "<img src='/ChantImages/random/sub_banner/2.jpg' name=random_image width=550 height=123>";
images[2] = "<img src='/ChantImages/random/sub_banner/3.jpg' name=random_image width=550 height=123>";
images[3] = "<img src='/ChantImages/random/sub_banner/4.jpg' name=random_image width=550 height=123>";
images[4] = "<img src='/ChantImages/random/sub_banner/5.jpg' name=random_image width=550 height=123>";
images[5] = "<img src='/ChantImages/random/sub_banner/6.jpg' name=random_image width=550 height=123>";

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



document.write(images[index]);

