// Copyright 2002-2003 Manolito dela Rosa.  All rights reserved.
// --------------------------------------------------------

var rand1 = 0;
var useRand = 0;
images = new Array;
images[1] = new Image();
images[1].src = "srcfile/indx01.jpg";
images[2] = new Image();
images[2].src = "srcfile/indx02.jpg";
images[3] = new Image();
images[3].src = "srcfile/indx03.jpg";
images[4] = new Image();
images[4].src = "srcfile/indx04.jpg";
images[5] = new Image();
images[5].src = "srcfile/indx05.jpg";
images[6] = new Image();
images[6].src = "srcfile/indx06.jpg";
images[7] = new Image();
images[7].src = "srcfile/indx07.jpg";
images[8] = new Image();
images[8].src = "srcfile/indx08.jpg";
images[9] = new Image();
images[9].src = "srcfile/indx09.jpg";
images[10] = new Image();
images[10].src ="srcfile/indx10.jpg";


function manopic() 
{
    var imgnum = 8 - 1; 
    var randnum = Math.random();
    rand1 = Math.round((imgnum - 1) * randnum) + 1;
    document.indx01.src = images[rand1].src;
    document.indx02.src = images[rand1+1].src;
    document.indx03.src = images[rand1+2].src;
    document.indx04.src = images[rand1+3].src;
}
