function randomImage()
{
var theimg = new Array();
theimg[0] = "images/random/random1.jpg";
theimg[1] = "images/random/random2.jpg";
theimg[2] = "images/random/random3.jpg";
theimg[3] = "images/random/random4.jpg";
theimg[4] = "images/random/random5.jpg";


var number = Math.round((theimg.length-1) * Math.random());
document.write("<img src=" + theimg[number] + " width='240' height='210' border='0' alt='Welcome to Tasters Tote' vspace='0' hspace='0' align='right'>");
}
