var mess = new Array(
'<a href="testimonials.asp"><img border="0" src="images/quotes/lrg_quote_1.gif" width="230" height="265"></a>',
'<a href="testimonials.asp"><img border="0" src="images/quotes/lrg_quote_2.gif" width="230" height="265"></a>',
'<a href="testimonials.asp"><img border="0" src="images/quotes/lrg_quote_3.gif" width="230" height="265"></a>',
'<a href="testimonials.asp"><img border="0" src="images/quotes/lrg_quote_4.gif" width="230" height="265"></a>',
'<a href="testimonials.asp"><img border="0" src="images/quotes/lrg_quote_5.gif" width="230" height="265"></a>',
'<a href="testimonials.asp"><img border="0" src="images/quotes/lrg_quote_6.gif" width="230" height="265"></a>'
);
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);


