
var returnValue = true,

quote = ['<img src="../images/quote1.jpg" width="595" height="115" />',
		 '<img src="../images/quote2.jpg" width="595" height="134" />',
		 '<img src="../images/quote3.jpg" width="595" height="134" />',
		 '<img src="../images/quote4.jpg" width="595" height="155" />',
		 '<img src="../images/quote5.jpg" width="595" height="138" />',
		 '<img src="../images/quote6.jpg" width="595" height="153" />',
		 '<img src="../images/quote7.jpg" width="595" height="182" />',
		 '<img src="../images/quote8.jpg" width="595" height="144" />',
		 '<img src="../images/quote9.jpg" width="595" height="175" />'],  

len = quote.length;

if((len*2)%2 == 1){returnValue=false;}

function showQuote(){
if(returnValue==false)
{document.write('<img src="../images/quote1.jpg" width="595" height="115" />');return false;}
var rand = Math.floor(len*Math.random())
document.write(quote[rand]);
}
