// The Array Function 
function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}
imagesa = new makeArray(18);
imagesa[0] = "<img src='/img/rotation/image1.jpg'  width='160' height='80' border='0'>";
imagesa[1] = "<img src='/img/rotation/image2.jpg'  width='160' height='80' border='0'>";
imagesa[2] = "<img src='/img/rotation/image3.jpg'  width='160' height='80' border='0'>";
imagesa[3] = "<img src='/img/rotation/image4.jpg'  width='160' height='80' border='0'>";
imagesa[4] = "<img src='/img/rotation/image5.jpg'  width='160' height='80' border='0'>";
imagesa[5] = "<img src='/img/rotation/image6.jpg'  width='160' height='80' border='0'>";
imagesa[6] = "<img src='/img/rotation/image7.jpg'  width='160' height='80' border='0'>";
imagesa[7] = "<img src='/img/rotation/image8.jpg'  width='160' height='80' border='0'>";
imagesa[8] = "<img src='/img/rotation/image9.jpg'  width='160' height='80' border='0'>";
imagesa[9] = "<img src='/img/rotation/image10.jpg'  width='160' height='80' border='0'>";
imagesa[10] = "<img src='/img/rotation/image11.jpg'  width='160' height='80' border='0'>";
imagesa[11] = "<img src='/img/rotation/image12.jpg'  width='160' height='80' border='0'>";
imagesa[12] = "<img src='/img/rotation/image13.jpg'  width='160' height='80' border='0'>";
imagesa[13] = "<img src='/img/rotation/image41.jpg'  width='160' height='80' border='0'>";
imagesa[14] = "<img src='/img/rotation/image42.jpg'  width='160' height='80' border='0'>";
imagesa[15] = "<img src='/img/rotation/image43.jpg'  width='160' height='80' border='0'>";
imagesa[16] = "<img src='/img/rotation/image50.jpg'  width='160' height='80' border='0'>";
imagesa[17] = "<img src='/img/rotation/image52.jpg'  width='160' height='80' border='0'>";


imagesb = new makeArray(18);
imagesb[0] = "<img src='/img/rotation/image14.jpg'  width='160' height='80' border='0'>";
imagesb[1] = "<img src='/img/rotation/image15.jpg'  width='160' height='80' border='0'>";
imagesb[2] = "<img src='/img/rotation/image16.jpg'  width='160' height='80' border='0'>";
imagesb[3] = "<img src='/img/rotation/image17.jpg'  width='160' height='80' border='0'>";
imagesb[4] = "<img src='/img/rotation/image18.jpg'  width='160' height='80' border='0'>";
imagesb[5] = "<img src='/img/rotation/image19.jpg'  width='160' height='80' border='0'>";
imagesb[6] = "<img src='/img/rotation/image20.jpg'  width='160' height='80' border='0'>";
imagesb[7] = "<img src='/img/rotation/image21.jpg'  width='160' height='80' border='0'>";
imagesb[8] = "<img src='/img/rotation/image22.jpg'  width='160' height='80' border='0'>";
imagesb[9] = "<img src='/img/rotation/image23.jpg'  width='160' height='80' border='0'>";
imagesb[10] = "<img src='/img/rotation/image24.jpg'  width='160' height='80' border='0'>";
imagesb[11] = "<img src='/img/rotation/image25.jpg'  width='160' height='80' border='0'>";
imagesb[12] = "<img src='/img/rotation/image26.jpg'  width='160' height='80' border='0'>";
imagesb[13] = "<img src='/img/rotation/image44.jpg'  width='160' height='80' border='0'>";
imagesb[14] = "<img src='/img/rotation/image45.jpg'  width='160' height='80' border='0'>";
imagesb[15] = "<img src='/img/rotation/image46.jpg'  width='160' height='80' border='0'>";
imagesb[16] = "<img src='/img/rotation/image51.jpg'  width='160' height='80' border='0'>";
imagesb[17] = "<img src='/img/rotation/image53.jpg'  width='160' height='80' border='0'>";


imagesc = new makeArray(17);
imagesc[0] = "<img src='/img/rotation/image27.jpg'  width='160' height='80' border='0'>";
imagesc[1] = "<img src='/img/rotation/image28.jpg'  width='160' height='80' border='0'>";
imagesc[2] = "<img src='/img/rotation/image29.jpg'  width='160' height='80' border='0'>";
imagesc[3] = "<img src='/img/rotation/image30.jpg'  width='160' height='80' border='0'>";
imagesc[4] = "<img src='/img/rotation/image31.jpg'  width='160' height='80' border='0'>";
imagesc[5] = "<img src='/img/rotation/image32.jpg'  width='160' height='80' border='0'>";
imagesc[6] = "<img src='/img/rotation/image33.jpg'  width='160' height='80' border='0'>";
imagesc[7] = "<img src='/img/rotation/image34.jpg'  width='160' height='80' border='0'>";
imagesc[8] = "<img src='/img/rotation/image35.jpg'  width='160' height='80' border='0'>";
imagesc[9] = "<img src='/img/rotation/image36.jpg'  width='160' height='80' border='0'>";
imagesc[10] = "<img src='/img/rotation/image37.jpg'  width='160' height='80' border='0'>";
imagesc[11] = "<img src='/img/rotation/image38.jpg'  width='160' height='80' border='0'>";
imagesc[12] = "<img src='/img/rotation/image39.jpg'  width='160' height='80' border='0'>";
imagesc[13] = "<img src='/img/rotation/image40.jpg'  width='160' height='80' border='0'>";
imagesc[14] = "<img src='/img/rotation/image47.jpg'  width='160' height='80' border='0'>";
imagesc[15] = "<img src='/img/rotation/image48.jpg'  width='160' height='80' border='0'>";
imagesc[16] = "<img src='/img/rotation/image49.jpg'  width='160' height='80' border='0'>";



// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
   
var now = new Date()
var seed = now.getTime() % 0xffffffff

// -->

