  var Strawberries = new Array();

Strawberries[1] = "http://www.chocolatefountainrental.com/images/rotatingpics/strawberries/chocolatestrawberry.jpg";
Strawberries[2] = "http://www.chocolatefountainrental.com/images/rotatingpics/strawberries/strawberries.jpg";
  var rn = Math.floor(Math.random() * Strawberries.length);
  if (rn == 0)
  {
  rn = 1;
  }
document.write("<img src='"+Strawberries[rn]+"' border=0>");