// JavaScript Static Text Slideshow

var slideArray = new Array()

slideArray[0]= '<a class="testimonyLink" href="testimonies.php"><h2>Extremely pleased..</h2><p>"Absolute Computer Solutions has been a vital contributor to the on going growth and success of our organization. Their services continue to.."</p><p class="testimonyName"><em>~ Maurice D. LeBlanc, CEO<br />Family Service Moncton,<br />Services &agrave; la famille Moncton</em></p></a>';

slideArray[1]= '<a class="testimonyLink" href="testimonies.php"><h2>Instrumental..</h2><p>"Absolute Computer Solutions (ACS) has provided technical support services to Industrial Rail Services for several years. ACS has been instrumental in assisting our company.."</p><p class="testimonyName"><em>~ Chris Evers, CEO<br />Industrial Rail</em></p></a>';

slideArray[2]= '<a class="testimonyLink" href="testimonies.php"><h2>Reliable, honest..</h2><p>"We have used Stacy at Absolute Computer Solutions for many years. They maintain our computers and always keep them in good working order. ACS is reliable, honest.."</p><p class="testimonyName"><em>~ Roberta Hayes,<br />Homelife Hayes Realty</em></p></a>';

slideArray[3]= '<a class="testimonyLink" href="testimonies.php"><h2>Highly recommend..</h2><p>"Stacy Price from Absolute Computer was our company&rsquo;s answer for doctor related software.  The product fits our doctor&rsquo;s needs and is easy to use.."</p><p class="testimonyName"><em>~ Chris Dennis, IT Manager<br />Vogue Optical</em></p></a>';

slideArray[4]= '<a class="testimonyLink" href="testimonies.php"><h2>Great service..</h2><p>"I highly recommend Absolute Computer Solutions. Great work, great team, great service and all of this for a price you won&rsquo;t find anywhere!.."</p><p class="testimonyName"><em>~ Ross Carpenter,<br />Heritage Developments</em></p></a>';


function textSlideShow()

{

var total_slides;

total_slides=Math.floor(Math.random()*slideArray.length)

document.getElementById('div_display').innerHTML=slideArray[total_slides];

setTimeout("textSlideShow()",12000); //ie. 10000 is 10 seconds

}


/*
And then call this javascript function inside the HTML div element in which you want to display text slideshow like below.

<div id="div_display"><script type="text/javascript" language="javascript"> textSlideShow();</script></div>
*/
