<!--
var gallery = new Array();
gallery[0] = new Array("images/random/1/balloon_tmb.jpg","images/random/1/breezy_tmb.jpg","images/random/1/bird_tmb.jpg","images/random/1/burden_tmb.jpg","images/random/1/blood_tmb.jpg");
gallery[1] = new Array("images/random/2/eyes_tmb.jpg","images/random/2/earing_tmb.jpg","images/random/2/horse_tmb.jpg","images/random/2/chems_tmb.jpg","images/random/2/silhouette_tmb.jpg");
gallery[2] = new Array("images/random/3/thrill_tmb.jpg","images/random/3/red_tmb.jpg","images/random/3/red_tmb.jpg","images/random/3/life_tmb.jpg","images/random/3/sculpture_tmb.jpg");

function pickImageFrom(whichGallery)
{
var idx = Math.floor(Math.random() * gallery[whichGallery].length);
document.write('<img src="' + gallery[whichGallery][idx] + '">');
}
//-->