$(document).ready( function() {
		var textArray = [
			'I am always very impressed with your support. I have been with you guys for 6 years or so, and you still amaze me with the top notch service and support I receive. - Jim S.',
			'I am overall extremely satisfied with the network infrastructure, reliability, routine maintenance, amazing promptness, and overall high technical skill level of the Support (technical and Sales) Team. - Sunil R.',
			'Great Hosting and Support, I have referred many people here for that very reason. Keep up the good work! - Ben W. - <a href="http://respectedadmins.net/" target="_blank">RespectedAdmins.net</a>',
			'I am very grateful and satisfied with your service and support, you all have been very comprehensive with me. - Juan Carlos V.',
			'Keep up the great work, guys! I appreciate everything you do! - Jodi K. - <a href="http://www.voiceoversandvocals.com/" target="_blank">VoiceOversAndVocals.com</a>',
			'Just overall satisfaction! It\'s really great to have "experts" on the other end of the HostDime chat line! Thank you very much for making it easy to do business with HostDime. - Jan O. - <a href="http://www.wordpro.net/" target="_blank">WordPro.net</a>',
			'I\'ve been blown away by your technical support. You guys have stuff reviewed and solved very quickly, which is amazing after the way our last web host would take 24-48 hours simply to review a support request. - Chris F. - <a href="http://www.playersjet.com/" target="_blank">PlayersJet.com</a>',
			'I tell anyone that asks if I know a good host and I give them Hostdime url. The service is great, the support is equally as good, not just because they take care of things but the key point is the actual techs. - Mary W.',
			'Everyone, including the people on live chat  were very nice and always went above and beyond what I consider to be standard for a hosting service. Please keep the good work, we have recommended you highly because of this. - Don T. - <a href="http://www.in-the-desert.com" target="_blank">In The Desert</a>',
			'I have completely satisfied with the service from HostDime. I have also had several of my Customers relocate to your Servers over the past year. - John E.',
			'Very satisfied. I\'ve been helped several times with problems over my head. Thank you. - Peter M.'
		];
		$('#client_testis').loadText( textArray, 15000 ); // ( array, interval )
	});
	// custom jquery plugin loadText()
	$.fn.loadText = function( textArray, interval ) {
		return this.each( function() {
			var obj = $(this);
			obj.fadeOut(300, function() { 
				obj.empty().html( random_array( textArray ) );	
				obj.fadeIn(300);
			});
			timeOut = setTimeout( function(){ obj.loadText( textArray, interval )}, interval );
			$("#nextcomment").click( function(){ 
				if( !obj.is(':animated') ) { clearTimeout( timeOut ); obj.loadText( textArray, interval );} // animation check prevents "too much recursion" error in jQuery 
			});
		});
	}
	
	function random_array( aArray ) {
		var rand = Math.floor( Math.random() * aArray.length + aArray.length );
		var randArray = aArray[ rand - aArray.length ];
		return randArray;
	}

