//function HowMany(count) 
//{
	<!-- Begin Quote Rotation Code
	var ic = 18     // Number of alternative images
	var quote = new Array(ic)  // Array to hold filenames for quotes
	var quoted = new Array(ic)  // Array to hold filenames for quoters
	
	quote[0] = "&quot;This is a dream come true position and I owe it all to all of you wonderful folks that gave me so much support, advice, encouragement, networking help, and friendship.  Thank you so much!&quot;"
	quoted[0] = "D.L., EEO Compliance Professional"

	quote[1] = "&quot;A friend of mine ... called and coaxed me to go to your networking group, and I'm so glad I went. It was my first-ever networking group experience and it taught me well. Thank you for all of the great tips, advice and support.... I've been attending 3 networking groups on a regular basis since, but [your] group always seemed to provide something new.&quot;"
	quoted[1] = "M.S., Marketing Writer"

	quote[2] = "&quot;Based on my brief exposure to Face2Face, I can say it's a great group and I've gotten more out of it in the past two months then all of the other groups and events I've attended (including outplacement) since I started my search....&quot;"
	quoted[2] = "Senior Marketing Manager"

	quote[3] = "&quot;I know I have only been to two of these meetings but the charge I received after these meetings was incredible!&quot;"
	quoted[3] = "D.D., Project Manager"

	quote[4] = "&quot;I have recently become employed and can no longer attend Face2Face. I found the meetings energizing for my job search. My daughter went to one or two meetings at my recommendation, now she too is employed!&quot;"
	quoted[4] = "N.S., Finance"

	quote[5] = "&quot;I want to thank you for all you do for the unemployed. It was 11 months ago today that I was let go from my job, but the good news is I start my new job in a few weeks! I attended your group last winter/spring ...I continue to promote you and your group for those who've lost their jobs. Thank you again, and please let others know that they will get a job! I think I gave up believing that, so I want to be an encouragement to others.&quot;"
	quoted[5] = "K.M., Senior IT Auditor"

	quote[6] = "&quot;I’ve attended several other local networking groups and I think yours in the best—by far.&quot;"
	quoted[6] = "D.L., Account Manager"

	quote[7] = "&quot;I always get good job search ideas when I come here.&quot;"
	quoted[7] = "Product Marketing Manager"

	quote[8] = "&quot;I think my participation in Face2Face meetings was extremely important. It's one of the key places where I was able to hone my self-presentation skills, and where I met some real role models. Thank you for the atmosphere you created and the discipline you imparted.&quot;"
	quoted[8] = "Newly-landed VP of Advanced Product Systems for a growing security imaging company"

	quote[9] = "&quot;I came away from the interview prep meeting with a lot of new ideas. It also helped me the next day because I had two interviews and at these interviews some of the questions we worked on came up.&quot;"
	quoted[9] = "Customer Relations Manager"

	quote[10] = "&quot;People give me excellent suggestions.&quot;"
	quoted[10] = "Software Engineer"

	quote[11] = "&quot;<strong>Rejuvenating</strong> is the word I'd use to describe the meeting today!&quot;"
	quoted[11] = "Accounting Professional"

	quote[12] = "&quot;Your coaching, coupled with the warm and friendly atmosphere of the Face2Face group, have been an inspiration as well as a great educational experience. I wish I had discovered the group earlier in my search….&quot;"
	quoted[12] = "CB, landed position as Brand Manager"

	quote[13] = "&quot;[I want to] express my sincere and heartfelt appreciation for you and the Face2Face meetings you facilitate.  Like many, prior to becoming unemployed I was unaware of the community of individuals who invest time and energy to run these networking groups - you are a treasure to humankind!  I will never forget this place in time and will forever be grateful for you and others who fortify the transition time by generously sharing your expertise and support - and everything else!  Many, many thanks... &quot;"
	quoted[13] = "Senior Marketing Manager"
	
	quote[14] = "&quot;I have been attending the Face2Face networking meeting for about 2 months and have truly been enjoying the experience.&quot;"
	quoted[14] = "Director of Medical Integration"
	
	quote[15] = "&quot;Thanks again for all you do for all of us.&quot;"
	quoted[15] = "Food Industry Sales Exec"
	
	quote[16] = "&quot;I owe much of my success to your great advice!&quot;"
	quoted[16] = "Financial Manager"
	
	quote[17] = "&quot;Thank you so much for all that you and the members at F2F did for me the past 5 months. Without your support, advice, shared networks, and sincere friendships, I would not have obtained my new position.&quot;"
	quoted[17] = "HR/EEO Manager"
	
	

	//quote[x] = "&quot;&quot;"
	//quoted[x] = "<BR><a href=''></a>"
	
	function pickRandom(range) {
		if (Math.random)
			return Math.round(Math.random() * (range-1))
		else {
			var now = new Date()
			return (now.getTime() / 1000) % range
		}
	}
	
	//Pick a random quote
	var choice = pickRandom(ic)
	
	
	//Display a single quote to the page 
//	if (count != 1) {
//		for (var i=0; i<19; i++) {
//				document.write(quote[i] + '<BR><BR><EM>' + quoted[i] + '</EM>');
//		}
//	}
//	else {
		document.write(quote[choice] + '<br /><br />-- ' + quoted[choice]);
//	}
	

