	var testimonial_count = 10; // number of testimonials
	var testimonial = new Array(testimonial_count);
	for (i = 0; i < testimonial.length; i++) {
		testimonial[i] = new Array(2);
	}
	testimonial[0]['txt'] = 'LOAN PLUS allows me to always be connected to my business no matter where I am, as long as I have an Internet connection. Itīs nice to log right into the system when I travelitīs just as fast as when Iīm in the office. I canīt imagine running my office without our Loan Origination Software.';
	testimonial[0]['sig'] = 'Thanks, Thomas Michael. -FL';
	testimonial[1]['txt'] = 'Thank you for developing CREDIT PLUS... now I have my own business and I doing credit repairs is easy to use, and my clients are happy using the client portal they can check their status at any time.';
	testimonial[1]['sig'] = 'Thanks so much, Pamela Johnson - FL';
	testimonial[2]['txt'] = 'Our lending company is using CREDIT PLUS, our agents are very happy to received the automated notifications once their clients reach the score required to qualify for a loan. Thank you so much for helping us increase our profits and the service to our clients!';
	testimonial[2]['sig'] = 'CJ - Branch Manager - CA';
	testimonial[3]['txt'] = 'This is just a short note to thank you... we opened our business and with your software FAST PAY PLAN we are helping people get out of debt and improving their scores, your Fast Pay Plus is and incredible service that we sell to our clients.';
	testimonial[3]['sig'] = 'Sincerely, Charles Thompson - CA';
	testimonial[4]['txt'] = 'From a client... I would like to thank you for getting me out of a financial nightmare that I thought I would never get out of.  I was stuck with a high monthly payment on my credit card with a high interest rate.  Thanks to your help, the monthly payments & interest rate was lowered to an easier bill to pay & I will be able to pay it off a lot sooner. (software Pay Fast Plus).';
	testimonial[4]['sig'] = 'Randal E. - IL';
	testimonial[5]['txt'] = 'From a client... I wanted to thank you for helping me to rearrange my finances so that I will have a little breathing room.  I had two charge companies to go up outrageously on the interest rates.  This has caused me to have to pay tremendously high minimum payments and very little of it was going on the principle.  This month, I paid $576 to the charge card companies.  I believe you figured I would be paying over $200 less each month.  This is a super great help to me.  Thanks again and I hope to do even more business with you in the future.  I consider you a real friend. (software Fast Pay Plus)';
	testimonial[5]['sig'] = 'Thanks, Sandra S. - IL';
	testimonial[6]['txt'] = 'From a client... I&#39;ll admit I was very skeptical when your product was introduced to me, however, after my financial advisor began working with me, I was amazed at how well she handled my situation.  Thanks to my advisor, I can be debt-free in 5 years and 7 months instead of 20 years.  She is a great help to me, always there when I need her and going out of her way to make sure all my questions are answered.  Thanks again for being so easy to talk with and for the professionalism and knowledge you demonstrate. (software Fast Pay Plus).';
	testimonial[6]['sig'] = 'Arlene D. - NC';
	testimonial[7]['txt'] = 'From a client... Thank you for helping correct my credit report! Thanks to that I was able to be hired... as many employers now are looking on credit reports before hiring... without your help I may be still looking for employment... PS. I was able to get a nicer apartment with no need for deposit :)';
	testimonial[7]['sig'] = 'Ivette Ramos - FL.';
	testimonial[8]['txt'] = 'Amazing before I was killing myself doing loan modifications and faxing over 30 pages and fighting with my fax machine... It was a mess! Your Loan Mod Plus not only help me organize all my files and keep all documents attached to the file but also is helping me qualify my clients for the HAM program with their build in calculators, is easy to print a full package and keep moving the files... I am very thank you with your system keep the good work.';
	testimonial[8]['sig'] = 'C. Willie - All Mortgage Modification Services, TX';
	testimonial[9]['txt'] = 'Thank you for creating LOAN MOD PLUS with their calculators is easy to qualify my clients for the HAM program, prepare a package, and submit all the docs to the lenders... just amazing... easy to use, save me time, and money..';
	testimonial[9]['sig'] = 'Tina Green.';
	//testimonial[10]['txt'] = 'Kate has been so kind and understanding towards us regarding debt.  She has pulled together an outstanding financial plan for us to follow and be able to pay off all of our bills in such a short amount of time.  I know that this is her job, but she has taken a lot of extra time to listen, pay attention, and take down every bit of information I told her regarding each bill.  She then used her expertise and knowledge and came up with this amazing way to pay everything off over 20 years sooner.  She has gone over and beyond my expectations.';
	//testimonial[10]['sig'] = 'Marlene D.';
	//testimonial[11]['txt'] = 'To whom it may concern, I am writing this note to compliment my advisor Bob M. on his outstanding professionalism in helping me.  He made me feel like a person not just a number.  You have a very loyal employee.';
	//testimonial[11]['sig'] = 'Lucille G. (A Happy Customer)';
	// uncomment to rotate
	/*
	var display_timer = 5; // how many seconds to display each testimonial
	setInterval("updateTestimonial()", display_timer * 1000);
	var i = 0;
	*/
	function updateTestimonial() {
		if (typeof(display_timer) != 'undefined') {
			i = (i < (testimonial.length - 1)) ? i + 1 : 0;
		} else {
			i = Math.floor(Math.random() * testimonial.length);
		}
		$("#testimonialText").html(testimonial[i]['txt'] + '<br /><div id="testimonialSignature">-' + testimonial[i]['sig'] + '</div>');
	}
	$(document).ready(function(){
		updateTestimonial();
	});
