
	var img1 = "./images/heavy1.gif"
	var img2 = "./images/heavy2.jpg"
	var img3 = "./images/heavy3.jpg"
	var img4 = "./images/heavy4.jpg"
	var img5 = "./images/heavy5.jpg"
	var img6 = "./images/heavy6.jpg"
	var randomize = Math.round(Math.random()*6)
	if (randomize == 1){
		newimg = img1
	}else if (randomize == 2){
		newimg = img2
	}else if (randomize ==3){
		newimg = img3
	}else if (randomize ==4){
		newimg = img4
	}else if (randomize ==5){
		newimg = img5		
	}else{
		newimg = img6
	}
	document.write('<IMG SRC="'+newimg+'">')

  
