	$(document).ready( function() {
		var textArray = [
			'I am in love with all the TEYE Mineral products!!! <div style="height:10px;"><\/div> ~ Andrea M.',
			'I am once again a confident shopper and I will be recommending your service to anyone who is in a &ldquo;fashion rut&rdquo;. <div style="height:10px;"><\/div> ~ Sydney H.',
			'As president of a busy recruiting firm and mother of two, time is my most precious commodity.  Jan&rsquo;s help has ranged from Costco runs to organizing hostess gifts to getting me dolled up for Black Tie events. She has become a key support system and I would recommend her to anyone for anything. <div style="height:10px;"><\/div> ~ Shannon B., <br \/>President, CEO <br \/>BOWEN Workforce Solutions',
			'I spent some time with Jan analyzing my closet and some time shopping with Jan.<div style="height:10px;"><\/div>As a result, I now know what necklines, hemlines, tops, jeans, accessories, etc. work for my body type and what to avoid. Everybody&rsquo;s closet needs Jan.<div style="height:10px;"><\/div> ~ Marguerite B.',
			'I love knowing that Jan is there to help me with anything that I may need...<div style="height:10px;"><\/div>Jan you make a big difference in my life. <div style="height:10px;"><\/div>Thank you!<div style="height:10px;"><\/div> ~ Andrea M.',
			'Your ability to find clothes and accessories that worked for me took the stress out of the equation and I had a great time! <div style="height:10px;"><\/div> ~ Sydney H.',
			'We really appreciate the service you provide, and how efficiently you do it. Thanks very much.<div style="height:10px;"><\/div>All the best,<div style="height:10px;"><\/div> ~ Lynne',
			'Jan makes my life better. <div style="height:10px;"><\/div>She created a stylish wardrobe for me at a reasonable price. That is something that I have never been able to do for myself. An even bigger miracle, she made it painless and sometimes even fun. It is a delight to find someone like Jan. Someone who makes life a wee bit more sane in an insane world. <div style="height:10px;"><\/div>Jan, thank you!<div style="height:10px;"><\/div>All the best,<div style="height:10px;"><\/div> ~ Kelly L.'
		];
		$('#text-content').loadText( textArray, 50000 ); // ( array, interval )
	});
	// custom jquery plugin loadText()
	$.fn.loadText = function( textArray, interval ) {
		return this.each( function() {
			var obj = $(this);
			obj.fadeOut( 'slow', function() { 
				obj.empty().html( random_array( textArray ) );	
				obj.fadeIn( 'slow' );
			});
			timeOut = setTimeout( function(){ obj.loadText( textArray, interval )}, interval );
		});
	}
	//public function
	function random_array( aArray ) {
		var rand = Math.floor( Math.random() * aArray.length + aArray.length );
		var randArray = aArray[ rand - aArray.length ];
		return randArray;
	}

