var theImages = new Array()
//theImages[0] = '../images/q1.gif'
//theImages[1] = '../images/q2.gif'
//theImages[2] = '../images/q3.gif'
theImages[0] = '../images/q4.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 showQuote(){
	
	if (whichImage==3) {
		document.write('<a href="/radio2/index.html"><img src="'+theImages[whichImage]+'" border="0" /></a>');
	}
	else {
		document.write('<img src="'+theImages[whichImage]+'">');
	}
}