// Corner banner

function cornerBanner(){

var scifi=new Array(2)
scifi[1]="fantasy.gif"
scifi[2]="science.gif"

var alttag=new Array(2)
alttag[1]="Fantasy"
alttag[2]="science"

var y=Math.round(Math.random()*2)%2+1;
document.write('<img src="'+scifi[y]+'" width="30" height="241" border="0" alt="'+alttag[y]+'">')
}

// Random Banners

function random_imglink(){
var myimages=new Array(11)
myimages[1]="hostess_ad.gif"
myimages[2]="atlas_ad.gif"
myimages[3]="hostess_ad_2.gif"
myimages[4]="seamonkeys_ad.gif"
myimages[5]="hostess_ad_3.gif"
myimages[6]="funshop_ad.gif"
myimages[7]="bdfs_ad.gif"
myimages[8]="soldiers_ad.gif"
myimages[9]="dungeons/mst3kdd_banner.gif"
myimages[10]="grit_ad.gif"
myimages[11]="olympic_ad.gif"

var alttag=new Array(11)
alttag[1]="You get a big delight in every bite of Hostess Fruit Pies"
alttag[2]="Muscles in Seven Days? Here's how!"
alttag[3]="You get a big delight in every bite of Hostess Cupcakes"
alttag[4]="Enter the World of Amazing Live Sea-Monkeys"
alttag[5]="You get a big delight in every bite of Hostess Twinkies"
alttag[6]="The Fun shop 634 S. Highland Ave. Memphis, TN 38111"
alttag[7]="Join The Black Dragon Fighting Society"
alttag[8]="100 PC Toy Soldier Set only $1.25"
alttag[9]="Mystery Science Theater 3000 Presents: Dark Dungeons"
alttag[10]="Earn Prizes and Cash By Selling GRIT!"
alttag[11]="Olympic Sales Club: Earn Prizes or Cash!"

var imagelinks=new Array(11)
imagelinks[1]="http://www.seanbaby.com/hostess.htm"
imagelinks[2]="http://www.charlesatlas.com"
imagelinks[3]="http://www.seanbaby.com/hostess.htm"
imagelinks[4]="http://www.sea-monkeys.com"
imagelinks[5]="http://www.seanbaby.com/hostess.htm"
imagelinks[6]="http://www.funshopmemphis.com"
imagelinks[7]="http://www.countdante.com"
imagelinks[8]="http://home.att.net/~1.elliott/comicbooktoysoldiersintro.html"
imagelinks[9]="../../dungeons/index.html"
imagelinks[10]="http://www.grit.com/"
imagelinks[11]="http://www.retrocrush.com/archive2005/captaino/index.html"

var y=Math.round(Math.random()*11)%11+1;
document.write('<a href="'+imagelinks[y]+'" target="_new"><img src="'+myimages[y]+'" width="468" height="60" border="0" alt="'+alttag[y]+'"></a>')
}
