//function HowMany(count) 
//{
	<!-- Begin Quote Rotation Code
	var ic = 2     // 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] = "<p class='quote'>&quot;The Dry Cleaning is the one chore I never seemed to cross off my list. With Don & Jefferson Cleaners handling the pickup and delivery, my clothes look great and are always ready to wear - and for the same price that I was paying at my old dry cleaners! Great attitude and great service!&quot;</p>"
	quoted[0] = "<p class='quotecred'>Jeff Lerman, Sutton, MA</p>"

	quote[1] = "<p class='quote'>&quot;Don Pham and Jefferson Cleaners have been saviors! We were always struggling to find time to drop off and pick up at the dry cleaners and always complaining about missing buttons and poorly creased collars. Since we have been using Jefferson, life has been so much easier. We are never missing the clothes that we want to wear because the clothes are picked up and dropped off twice a week right at our office!! Then we can either leave a check with a batch of dry cleaning or call in our credit card number. The time and auto expenses this has saved us literally translates into hundreds, if not thousands, of dollars over the last few years! Thanks Don, Helen and Jefferson Cleaners!&quot;</p>"
	quoted[1] = "<p class='quotecred'>Brett Malofsky, Holden, MA</p>"

	//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] + quoted[choice]);
//	}
	

