function getbanner() {
	banner = new MakeArray(100);
        numbanner = 12;

        banner[0] = "<a href=theworldsmosthauntedplaces2.shtml><img src=images/wmhp2_cover_130.jpg hspace=2 vspace=2 align=left border=0 alt='Click to check out this book!'></a>"
        banner[1] = "<a href=communicatingwiththedead.shtml><img src=images/cwd_coversm.jpg hspace=2 vspace=2 align=left border=0 alt='Click to check out this book!'></a>"
        banner[2] = "<a href=thenightmareencyclopedia.shtml><img src=images/nightmarecover125.jpg hspace=2 vspace=2 align=left border=0 alt='Click to check out this book!'></a>"
        banner[3] = "<a href=ourhauntedlives.shtml><img src=images/ourhauntedlivescover125.jpg hspace=2 vspace=2 align=left border=0 alt='Click to check out this book!'></a>"
        banner[4] = "<a href=ghostsofwar.shtml><img src=images/gowcover125.jpg hspace=2 vspace=2 align=left border=0 alt='Click to check out this book!'></a>"
        banner[5] = "<a href=theghostfiles.shtml><img src=images/ghostfiles125.jpg hspace=2 vspace=2 align=left border=0 alt='Click to check out this book!'></a>"
        banner[6] = "<a href=weirdmassachusetts.shtml><img src=images/weirdmassachusetts_130.jpg hspace=2 vspace=2 align=left border=0 alt='Click to check out this book!'></a>"
        banner[7] = "<a href=who_is_haunting_the_white_house.shtml><img src=images/whitehouse_135.jpg hspace=2 vspace=2 align=left border=0 alt='Click to check out this book!'></a>"
        banner[8] = "<a href=encyclopediaofhauntedplaces2.shtml><img src=images/ehp2_cover130.jpg hspace=2 vspace=2 align=left border=0 alt='Click to check out this book!'></a>"
        banner[9] = "<a href=themysteriesofthebermudatriangle.shtml><img src=images/bermudatriangle135.jpg hspace=2 vspace=2 align=left border=0 alt='Click to check out this book!'></a>"
        banner[10] = "<a href=pictureyourselflegendtripping.shtml><img src=images/legendtripping_135.jpg hspace=2 vspace=2 align=left border=0 alt='Click to check out this book!'></a>"
        banner[11] = "<a href=what_its_like.shtml><img src=images/whatitslike_140.jpg hspace=2 vspace=2 align=left border=0 alt='Click to check out this book!'></a>"


	//Make more as needed

	var now = new Date()
	var sec = now.getSeconds()

	return banner[sec % numbanner];
}

function MakeArray(n) {
	this.length = n;
	for (var i = 1; i <= n; i++) {
	        this[i] = 0 }
	    return this
}

