<!-- Begin JS Script -->

<!-- Begin
// Set up the image files to be used.
var theImg = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImg[0] = 'images/random1/1.jpg'
theImg[1] = 'images/random1/2.jpg'
theImg[2] = 'images/random1/3.jpg'
theImg[3] = 'images/random1/4.jpg'
theImg[4] = 'images/random1/5.jpg'
theImg[5] = 'images/random1/6.jpg'
theImg[6] = 'images/random1/7.jpg'
// do not edit anything below this line

var j = 0
var p = theImg.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImg[i]
}
var whichImg = Math.round(Math.random()*(p-1));
function show2(){
document.write('<a href="index.php?cat=group"><img src="'+theImg[whichImg]+'" border="0"></a>');
}

//  End -->






<!-- Begin JS Script -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/random2/1.jpg'
theImages[1] = 'images/random2/2.jpg'
theImages[2] = 'images/random2/3.jpg'
theImages[3] = 'images/random2/4.jpg'
theImages[4] = 'images/random2/5.jpg'

// do not edit anything below this line

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 show1(){
document.write('<img class="border1" src="'+theImages[whichImage]+'">');
}

//  End -->



