
var Quotation=new Array();
var Name=new Array();
var Loc=new Array();

Quotation[0] = "... I've been using Ruff-Tuff since 1982 and have been with them ever since. Always good service.";
Name[0] = "Keith"
Loc[0] = "Bismarck, ND"

Quotation[1] = "The service is excellent. Nobody else sells seat covers that fit any of the newer seats. You really fit the need."
Name[1] = "Doug"
Loc[1] = "Dickinson, ND"

Quotation[2] = "I will not forget the service... and would not hesitate to do business with you in the future."
Name[2] = "Mac"
Loc[2] = "Tempe, AZ"

Quotation[3] = "I will highly recommend you to my family and friends."
Name[3] = "John"
Loc[3] = "Salt Lake City, UT"

Quotation[4] = "I used Ruff-Tuff saddle blanket seat covers for over 12 years before they showed any wear at all... and that was with over 100,000 miles on it! I wouldn't buy anything else for my trucks."
Name[4] = "Steve"
Loc[4] = "Anchorage, AK"

Quotation[5] = "They arrived, and are all I hoped for. Mark down a satisfied customer."
Name[5] = "Gene"
Loc[5] = "Portland, OR"

Quotation[6] = "Ruff-Tuff always comes through on the tougher style seat covers. The best quality material, the best serivce, and the best fit."
Name[6] = "Mike"
Loc[6] = "Burlington, NC"

Quotation[7] = "I've been very please with all of my dealings with Ruff-Tuff, and the staff is courteous and very knowledgeable."
Name[7] = "Kevin"
Loc[7] = "Midland, TX"

Quotation[8] = "Excellent to deal with. Bend over backwards service. The BEST!"
Name[8] = "Daniel"
Loc[8] = "Kansas City, MO"

Quotation[9] = "Just want to thank you for the beautiful job you folks did! Not only are the seat covers a perfect fit but they arrived in time for my friend's birthday! Thanks again!"
Name[9] = "Margaret"
Loc[9] = "Gold Beach, OR"

Quotation[10] = "Thanks for helping me order the sheepskin seat covers for my Mustang. I really like them."
Name[10] = "Bret"
Loc[10] = "Springville, UT"

Quotation[11] = "I will choose Ruff-Tuff for any future seat cover needs. You get it, customer service use to be number one in most companies, and it still is with yours."
Name[11] = "Brad"
Loc[11] = "Conyers, GA"

Quotation[12] = "Outstanding value, great service, and fast shipping!"
Name[12] = "David"
Loc[12] = "Ft. Worth, TX"

Quotation[13] = "First of all, let me say that I am very impressed with my seat covers. I just finished installing them in my 1978 Nova, and they are a perfect fit. I can't believe the difference they made in my car. They are the right color, and they are very well-made, and very affordable. I also appreciate your professionalism in the ordering process. This was my largest on-line purchase to date, and any fears I had about online ordering is gone. You guys were honest, you did what you said you would do, and you did it all on time. I would recommend you guys to anyone needing seat covers for their car or truck especially if they have an older car with unusual seat configurations."
Name[13] = "Adam"
Loc[13] = "Johnson City, TN"

Quotation[14] = "Love the seat covers... just LOVE them! Very fast shipping!"
Name[14] = "Larry"
Loc[14] = "Pheonix, AZ"

Quotation[15] = "I just wanted to let you know that you have a great company... wonderful to work with... professional & so courteous and helpful."
Name[15] = "Tracy"
Loc[15] = "Salt Lake City, UT"

Quotation[16] = "Couldn't find seat covers in my area, then I found you. Got them at a great price and fast shipping!"
Name[16] = "Woody"
Loc[16] = "Des Moines, IA"

Quotation[17] = "You were so helpful and informative on the phone and assured me that I could call if I had any problems. The new seat covers look great. Thanks."
Name[17] = "Jennifer"
Loc[17] = "Glendora, CA"

Quotation[18] = "Thank you for doing a superb job fabricating covers for seats that I felt would be hard to cover! Your website has the best descriptions, diagrams and pictorals of any manufacturer I found on the web."
Name[18] = "John"
Loc[18] = "Juneau, Alaska"

Quotation[19] = "The seat covers I ordered for my truck fit perfectly, are the correct color, and are much heavier-duty and comfortable than I expected. Thank you again for many comfortable years to come."
Name[19] = "Brady"
Loc[19] = "Chicago, IL"

Quotation[20] = "Just a note to let you folks know that I have received and installed my new Southwestern style seatcovers for our 2007 Toyota Yaris S Sedan. They fit like a glove and look great!  Thanks - it was worth the wait for a new product."
Name[20] = "Bob"
Loc[20] = "Albuquerque, NM"

Quotation[21] = "I'm so proud that an American company made this kind of high quality product! Keep it up and thanks for my great Seat Cover!"
Name[21] = "Issac"
Loc[21] = "Salt Lake City, UT"

Quotation[22] = "Loved the Covers, was able to install them myself.  Took a little longer with my disability.  Great Fit!"
Name[22] = "Susan"
Loc[22] = "Poulsbo, WA"
var Q = Quotation.length;
var wq=Math.round(Math.random()*(Q-1));
function showQuotation(){ document.write("<font color='#666666'>\"" + Quotation[wq] + "\"</font><br><strong>" + Name[wq] + "</strong><br>" + Loc[wq] + "<br><br>"); }
showQuotation();
