<!--

var theImages = new Array() 


theImages[0] = '/_images/rotation/rotation_pict1.jpg'
theImages[1] = '/_images/rotation/rotation_pict2.jpg'
theImages[2] = '/_images/rotation/rotation_pict3.jpg'
theImages[3] = '/_images/rotation/rotation_pict4.jpg'
theImages[4] = '/_images/rotation/rotation_pict5.jpg'
theImages[5] = '/_images/rotation/rotation_pict6.jpg'
theImages[6] = '/_images/rotation/rotation_pict7.jpg'
theImages[7] = '/_images/rotation/rotation_pict8.jpg'
theImages[8] = '/_images/rotation/rotation_pict9.jpg'
theImages[9] = '/_images/rotation/rotation_pict10.jpg'

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}
//-->

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
