function assortRandom()
{
  do
  {
    setInterval("assortLoop()",4500)
  }
  while(i=0)
}

function assortLoop()
{
  var rnd=Math.floor(Math.random()*4)
    
  image = document.getElementById("dishes");
  image.src = "images/assort/dishes/dish_"+rnd+".jpg";
  image.width = "671";
  image.height = "240";
  image.alt = "";
  image.title = "";
}
