// Simple Random Image Loader
// Community Weblog of Persian Students in the UK
var theImages = new Array() // do not change this

theImages[0] = 'psuklogo01.jpg'
theImages[1] = 'psuklogo02.jpg'
theImages[2] = 'psuklogo03.jpg'

// no editing 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 showImage(){
document.write('<img src="http://s94595245.onlinehome.us/commonimg/'+theImages[whichImage]+'" alt="Persian Students in the UK Weblog Banner" />');
}

//  End -->