function selectPic() {
// create an array of all possible images
var picArray = new Array('/images/hm/hm_001.jpg','/images/hm/hm_002.jpg','/images/hm/hm_003.jpg','/images/hm/hm_004.jpg','/images/hm/hm_005.jpg','/images/hm/hm_006.jpg','/images/hm/hm_007.jpg','/images/hm/hm_008.jpg','/images/hm/hm_008.jpg','/images/hm/hm_010.jpg');
// select a random num between 0 and length of the array
var randomNum = Math.floor(Math.random() * picArray.length);
// assign a random array entry to the src of the image
document.getElementById("hm_pic").src = picArray[randomNum];
}



///////////////
function selectPicList222() {
// create an array of all possible images
var picArray = new Array('/images/page/almonddrag.jpg','/images/page/animalcrackers.jpg','/images/page/55.jpg');
// select a random num between 0 and length of the array
var thePic =  0; 

while (thePic <= 2) {
 
document.getElementById("hm_pic").src = picArray[thePic];
thePic++; 
}
}