// JavaScript Document
var touts=new Array();

//change the tout text if you want. Add/ delete additional touts as needed.

touts[0]='<a href="testimonials.php"><img src="images/quote_01.gif"></a>';

touts[1]='<a href="testimonials.php"><img src="images/quote_02.gif"></a>';

touts[2]='<a href="testimonials.php"><img src="images/quote_03.gif"></a>';

var whichtout=Math.floor(Math.random()*(touts.length));
document.write(touts[whichtout]) ;