var randomlinks=new Array()
randomlinks[0]="jbc_beer.html"
randomlinks[1]="jbc_beer2.html"
randomlinks[2]="jbc_beer3.html"
randomlinks[3]="jbc_beer4.html"
randomlinks[4]="jbc_beer5.html"
randomlinks[5]="jbc_beer6.html"
randomlinks[6]="jbc_beer7.html"

function randomlink(){
	window.location=randomlinks[Math.floor(Math.random()*randomlinks.length)]
}


var theImages = new Array()
theImages[0] = "jons beer club images/penis.jpg"
theImages[1] = "jons beer club images/beckham.jpg"
theImages[2] = "jons beer club images/dollar.jpg"
theImages[3] = "jons beer club images/fester.jpg"
theImages[4] = "jons beer club images/barbie.jpg"
theImages[5] = "jons beer club images/drink.jpg"
theImages[6] = "jons beer club images/luvvie.jpg"
theImages[7] = "jons beer club images/laurel.jpg"
theImages[8] = "jons beer club images/frodo.jpg"

var j = 0
var p = theImages.length;
var preBuffer = new Array()
	for (i = 0; i < p; i++){
		preBuffer[i] = new Image()
		preBuffer[i].src = theImages[i]
	}
var whichImage = Math.round(Math.random()*(p-1));

function showImage(){
	document.write('<img src="'+theImages[whichImage]+'">');
}


