// JavaScript Document
var howOften = 8; //number often in seconds to rotate
var current = 0; //start the counter at 0
var ns6 = document.getElementById&&!document.all; //detect netscape 6

// place your images, text, etc in the array elements here
var items = new Array();

    items[0]="Using the mail-in service was much easier and quicker than I thought it would be. It was also the least expensive and less than have the price of what Geek Squad wanted. Best-Teks mail-in service is the only way to go. Super fast and super cheap!!!<img src='images/largequotes-right.png' class='rightQuote' /><br /><span class='quotee'>&ndash; Natalee, M.<br /></span><span class='quotee'>&nbsp;&nbsp;&nbsp;Brooklyn, NY</span><div class='rating'>Rating <img src='images/stars.gif' alt='5 Star Rating!' /></div>"; 
    items[1]="Bestteks provided me with the quickest and most professional laptop service ever! I live in Myrtle Beach, SC and used their Nationwide Mailing Service. It took only 4 days from the time I contacted the company to the time I received my laptop back in perfect working condition! I will recommend your company to every I know and will be back in the future for sure! Thanks again!<img src='images/largequotes-right.png' class='rightQuote' /><br /><span class='quotee'>&ndash; Vanesa, H.<br /></span><span class='quotee'>&nbsp;&nbsp;&nbsp;Myrtle Beach, SC</span><div class='rating'>Rating <img src='images/stars.gif' alt='5 Star Rating!' /></div>";
    items[2]="Bestteks is AMAZING! They are super friendly and provided me with the quickest computer service ever! And the best part was, they explained what the problem was and answered all my questions in non-computer-professional terms, so that I could understand them. I give their service an A+++!<img src='images/largequotes-right.png' class='rightQuote' /><br /><span class='quotee'>&ndash; Ulysses , A.<br /></span><span class='quotee'>&nbsp;&nbsp;&nbsp;Houston, TX</span><div class='rating'>Rating <img src='images/stars.gif' alt='5 Star Rating!' /></div>"; 
    items[3]="Bestteks is truly the best! I was hesitant to mail in my laptop but am so glad I did. I was amazed by their great service and FREE shipping. I couldn't ask for more!<img src='images/largequotes-right.png' class='rightQuote' /><br /><span class='quotee'>&ndash; Sasha, S.<br /></span><span class='quotee'>&nbsp;&nbsp;&nbsp;Seattle, WA</span><div class='rating'>Rating <img src='images/stars.gif' alt='5 Star Rating!' /></div>"; 
    items[4]="THANK YOU BESTTEKS! YOUR NATIONWIDE MAILING SERVICE WAS VERY QUICK AND HASSLE-FREE!<img src='images/largequotes-right.png' class='rightQuote' /><br /><span class='quotee'>&ndash; PIERRE, M.<br /></span><span class='quotee'>&nbsp;&nbsp;&nbsp;MIAMI, FL</span><div class='rating'>Rating <img src='images/stars.gif' alt='5 Star Rating!' /></div>"; 	

    items[5]="Excellent Service! That\'s right! Best-Teks did a damn fine job and went above and beyond the requested service. I have already recommended them to a friend and, if necessary, I will certainly use them again. Thanks!<img src='images/largequotes-right.png' class='rightQuote' /><br /><span class='quotee'>&ndash; Roger, E.<br /></span><span class='quotee'>&nbsp;&nbsp;&nbsp;Upland, CA</span><div class='rating'>Rating <img src='images/stars.gif' alt='5 Star Rating!' /></div>";
    items[6]="I wanted to write and let you know how impressed I have been with the service and value that your company provided to me in upgrading and then repairing my laptop. If in the future I require work on my laptop, I will certainly make your company my first choice. In addition, I will be sure to recommend you should any of my friends or acquaintances require computer services. My thanks again.<img src='images/largequotes-right.png' class='rightQuote' /><br /><span class='quotee'>&ndash; Kelly, T.<br /></span><span class='quotee'>&nbsp;&nbsp;&nbsp;Redlands, CA</span><div class='rating'>Rating <img src='images/stars.gif' alt='5 Star Rating!' /></div>"; 
    items[7]="I write this with the satisfaction of knowing that I have completed a business transaction with an honest and reliable company. The technician that serviced my laptop was very knowledgable, professional, and accommodating. Keep the good work going; you have a winner of a company!<img src='images/largequotes-right.png' class='rightQuote' /><br /><span class='quotee'>&ndash; Harvey, S.<br /></span><span class='quotee'>&nbsp;&nbsp;&nbsp;Riverside, CA</span><div class='rating'>Rating <img src='images/stars.gif' alt='5 Star Rating!' /></div>"; 

function rotater() {
    document.getElementById("midTestimonial").innerHTML = items[current];
    current = (current==items.length-1) ? 0 : current + 1;
    setTimeout("rotater()",howOften*1000);
}