	var testimonial_count = 7; // number of testimonials
	var testimonial = new Array(testimonial_count);
	for (i = 0; i < testimonial.length; i++) {
		testimonial[i] = new Array(2);
	}
	testimonial[0]['txt'] = 'Thank you so much for your timely response on our loan modification request. We`ve tried working it out with our bank a year ago and got no where. Not only did you help us prevent foreclosure on our home but also lowered our monthly mortgage payments. Our payment is now affordable for us keep our home for a long long time. I am glad that I found your website. It did what it says it would do which is stop my mortgage foreclosure.';
	testimonial[0]['sig'] = 'Thanks, Thomas Michael. - FL';
	testimonial[1]['txt'] = 'My mortgage company was not willing to work with me. I tried to do this myself for weeks, but could not get anything accomplished. I received a notice to foreclose on my property even though I was trying to work things out. I can`t believe that you were able to Stop my Foreclosure and actually lower my payments while getting my loan current and back to good standing. Thank you so much.';
	testimonial[1]['sig'] = 'Thanks so much, Pamela Johnson - FL';
	testimonial[2]['txt'] = 'They worked quickly and efficiently in getting the job done. They called to let me know that they stopped my foreclosure. What really surprised me was that they were able to lower my payments by $250.00 dollars a month, but most importantly they successfully lowered my past due balance from $250,000.00 to $215,388.00. I am forever grateful to them. I would highly recommend them to anyone. Thanks!';
	testimonial[2]['sig'] = 'CJ - IL';
	testimonial[3]['txt'] = 'I like to thank you for your assistance, guidance and most of all the caring way you conduct your business in making me feel better and just simply showing that you and your company cares about the homeowner. May God continue to Bless you and yours ';
	testimonial[3]['sig'] = 'Charles Thompson - FL';
	testimonial[4]['txt'] = 'Thank you guys for helping us through this. You all have been great and I`m sure I wouldn`t have got this done without your help.';
	testimonial[4]['sig'] = 'Randal E. - IL';
	testimonial[5]['txt'] = 'I just want to take this time and say a big thank you to you and your team for saving our home. Without you I do not think that we could have done it. It was such a scary thing to go through,very unnerving. But through prayer and your help we made it. I thank God everyday and I thank you. Thank you so much for helping us save our home. We really appreciate you.';
	testimonial[5]['sig'] = 'Thanks, Sandra S. - FL';
	testimonial[6]['txt'] = 'We just wanted to write you and express our appreciation for everything that you and your company has done for us, in helping us save our home. You are truely amazing people. We got in a bad situation and you helped us get out. We can not express our gratitude enough. Thank you for all you did and the promptness that you put forward into our situation.';
	testimonial[6]['sig'] = 'Arlene D. - FL';
	//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();
	});
