/* WEBDESIGN & WEBSITE BY RANDHIR RAMAUTAR webarchitecture / http://webarchitecture.awardspace.com*/ 
/* DATE: 20-05-2008 / V1.0  BROWSER: IE 6.0, FF 1.0 / OS: WINDOWS / RESOLUTION: 1024x768 */

var theImages = new Array() 
theImages[0] = 'rdhmain/IMG/A1.jpg'
theImages[1] = 'rdhmain/IMG/A2.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]+'">');
}
