function Quote( t )
{	this.text = t;
};

var quotes = 
[
new Quote("../images/lftTopLion118_70_23.jpg"),
new Quote("../images/lftTopLion118_70_2.jpg"),
new Quote("../images/rghtTopWhiteRhino118_70.jpg"),
new Quote("../images/lftTopWilddogs118_70.jpg"),
new Quote("../images/rghtTopWhiteRhino118_70.jpg"),
new Quote("../images/lftTopZebra118_70.jpg"),
new Quote("../images/lftTopWilddogs118_70.jpg"),
new Quote("../images/rghtTopRhino118_70.jpg"),
new Quote("../images/lftTopLeopard118_70.jpg"),
new Quote("../images/lftTopWilddogs118_70.jpg"),
new Quote("../images/rghtTopWhiteRhino118_70.jpg"),
new Quote("../images/lftTopLion118_70.jpg"),
new Quote("../images/lftTopZebra118_70.jpg")

];
var quote = quotes[  Math.floor(Math.random()*1000) % quotes.length ];
var s = '<img border="0" src="'+ quote.text + '" width="118" height="70" >';
/*if( quote.author.length > 0 )
	s += '<p class=quoteby> -' + quote.author + '</p>'; */
document.write( s );

/* <img border="0" src="images/lftTopLion118_70_3.jpg" width="118" height="70">   */
