var slideArray = new Array()

slideArray[0]= "<p>Thanks for a great website and all the help you gave us through the whole process.<br /><i>''John Indepth Research''</i></p>";

slideArray[1]= "<p>Thanks for all your help and designing me a fanastic website.<br /><i>''Owen Jigsaw Carpentry''</i></p>";

slideArray[1]= "<p>My new website has really helped my business by show casing my arrangements.<br /><i>''Debbie Debbies Floral Designs''</i></p>";

function textSlideShow()

{

var total_slides;

total_slides=Math.floor(Math.random()*slideArray.length)



document.getElementById('div_display').innerHTML=slideArray[total_slides];

setTimeout("textSlideShow()",6000);

}



