window.onload = choosePic;

var myPix = new Array("_images_hot-toys/ta-ht-eraser.jpg","_images_hot-toys/ta-ht-bakugan.jpg","_images_hot-toys/ta-ht-smencils.jpg","_images_hot-toys/ta-ht-playmobil.jpg","_images_hot-toys/ta-ht-lego.jpg","_images_hot-toys/ta-ht-uglydoll.jpg","_images_hot-toys/ta-ht-airhog.jpg","_images_hot-toys/ta-ht-klutz.jpg","_images_hot-toys/ha-ht-bananagrams.jpg","_images_hot-toys/ta-ht-papo.jpg");

function choosePic() {
	randomNum = Math.floor((Math.random() * myPix.length));
	document.getElementById("hot_toys_img").src = myPix[randomNum];
}

