<!--

var theImages = new Array() 

theImages[0] = 'goods/img/tsuru_b2.jpg'
theImages[1] = 'goods/img/tsuru_b7.jpg'
theImages[2] = 'goods/img/tsuru_b5.jpg'
theImages[3] = 'goods/img/tsuru_b1.jpg'
theImages[4] = 'goods/img/tsuru_b6.jpg'
theImages[5] = 'goods/img/tsuru_b8.jpg'
theImages[6] = 'goods/img/tsuru_b4.jpg'
theImages[7] = 'goods/img/tsuru_b3.jpg'

var p = theImages.length;
var preBuffer = new Array();
for (i = 0; i < p; i++){
  preBuffer[i] = new Image();
  preBuffer[i].src = theImages[i];
}

function showImage(){
  p=theImages.length;
  whichImage = Math.round(Math.random()*(p-1));
  document.write('<img src="'+theImages[whichImage]+'" border="0">');
}

//-->