// JavaScript Document
var numUsed = new Array();

var lookup = [
			  "<p><font size='-1'><em>'I never dreamed my carpet could look so beautiful. It truly looks brand new and it's 15 years old! Mark did a wonderful job and is extremely polite. Johnathon was so sweet and he too did an excellent job...looking forward to using you soon!'<br />-Nancy J., Durango</em></font></p>",
			  
			  "<p><font size='-1'><em>'I would like to thank Richard for making my off-white 11 year old carpets look brand new! I have never seen such a great job! Also, I hired him because of allergy problems I have been plagued with for more than a year...I am a new woman in health and 'new looking' carpets. Prior to his cleaning I was seriously thinking about removing old, tired, stained carpets – no need to now, if Richard cleans once or twice a year maybe it'll be another 20 years before I replace carpets.'<br />-Debbie K., Durango</em></font></p>", 
			  
			  "<p><font size='-1'><em>'Thank you, the service was amazing. Our carpet looks fantastic! Love you guys!'<br />-Karyl H., Durango</em></font></p>",
			  
			  "<p><font size='-1'><em>'Johnathon and Mark were incredibly nice and the work done was so, so much better than any we've previously had done by other companies. We'll only call you in the future and have already been telling friends of how great you are!'<br />-Laurie B., Durango</em></font></p>",
			  
			  "<p><font size='-1'><em>'Thank you - what a pleasure to do business with a company that knows what customer service is all about. You will definitely get referrals from us & we'll use you again. You've got it right - just don't change!!'<br />-Linda M., Durango</em></font></p>",
			  
			  "<p><font size='-1'><em>'It was the best carpet cleaning experience I ever had! Great Job!'<br />-F.A., Durango</em></font></p>",
			  
			  "<p><font size='-1'><em>'You were fantastic in every way.'<br />-Sharon L., Durango</em></font></p>",
			  
			  "<p><font size='-1'><em>'Doesn't matter if you have dogs or cats your carpets will smell so good and look almost brand new. I say to friends, go to Richard at UltraSteam and he will do the same for you - I promise! The best carpet cleaner I've had in my life.'<br />-Trudy P., Durango</em></font></p>",
			  
			  "<p><font size='-1'><em>'We were totally impressed, got some education and great service. Especially like the 'Green' part.'<br />-Ralph B., Durango</em></font></p>",
			  
			  "<p><font size='-1'><em>'Jack is the most enthusiastic expert on carpet cleaning I have ever met!!'<br />-Tricia H.</em></font></p>",
			  
			  "<p><font size='-1'><em>'Wow! It looks like you installed a new carpet! Thank you! The coupons were a very nice touch, too!'<br />-Rob D., Ignacio</em></font></p>",
			  ];

function getRandomItem () {
	
	for ( var i = 0; i < lookup.length; i ++ ) {
		var num = getUniqueNumber();
		if ( num != null ) {
			var randomitem = lookup[num];
			numUsed.push( num );
			return randomitem;
		} 
	}	
		
}

function getUniqueNumber () {
	var num = Math.floor(Math.random()*lookup.length);
	if ( hasBeenUsed( num ) ) {
		
		return null;
		
	} else {
		return num;
	}
}

function hasBeenUsed ( n ) {
	var result = false;
	for ( var i = 0; i < numUsed.length; i ++ ) {
		if ( n == numUsed[i] ) result = true;
	}
	return result;
}