function randomImage_re () {

var numb = 7 // Number of images
imageArray = new Array();
imageArray[0] = "real_box_01.jpg";
imageArray[1] = "real_box_03.jpg";
imageArray[2] = "real_box_04.jpg";
imageArray[3] = "real_box_05.jpg";
imageArray[4] = "real_box_06.jpg";
imageArray[5] = "real_box_07.jpg";
imageArray[6] = "real_box_08.jpg";
var arrayIndex = Math.round(Math.random()*numb);
		if (arrayIndex >= numb)
			arrayIndex = 0;
		var randImage = imageArray[arrayIndex];
		document.write("<img src=images/" + randImage + " width=178 height=524 border=0>");
}
