// JavaScript Document
//Purpose: 
//This function is used to randomnly create the banners for the 
//main page
//Created By: Aditya Raina, CIT
//Created On: February 10, 2004

var banner = new Array()
//The Size of the images is 750 pixels x 100 pixels
banner[0] = "images/headerGraphic1.gif"
banner[1] = "images/headerGraphic2.gif"
banner[2] = "images/headerGraphic3.gif"
banner[3] = "images/headerGraphic4.gif"
banner[4] = "images/headerGraphic5.gif"
banner[5] = "images/headerGraphic6.gif"
banner[6] = "images/headerGraphic7.gif"
//add a new image saved following way:
//banner[nextindex] = "image source"


var x = Math.round(Math.random()*banner.length-1)
if(x < 0) x = 0
document.write("<img src='" + banner[x]+"' border='0'>")