function displayTestimonials(page){
	//create Testimonial array
	var testimonials = new Array();
	testimonials[0] = "&quot;More fun than I expected. Great staff!&quot; - JD, Anchorage";
	testimonials[1] = "&quot;I am satisfied.&quot; - PS, McGrath, AK";
	testimonials[2] = "&quot;From pain to comfort.&quot; - JN, Big Lake, AK";
	testimonials[3] = "&quot;Dr Artwohl and his staff were great! They were so kind and informative. This was a very positive experience for me.&quot; - MM, Anchorage";
	testimonials[4] = "&quot;Excellent care and treatment. I would highly recommend Dr. Artwohl and his staff. I was very well informed and the procedure was very comfortable.&quot; - JW, Anchorage";
	testimonials[5] = "&quot;I wish I had done it sooner! I feel so much better.&#34 -  WT, Anchorage";
	testimonials[6] = "&quot;I feel better about my legs. I can wear shorts again.&quot; - CT, Anchorage";
	testimonials[7] = "&quot;I felt well treated by all the staff. My legs do not bother me and I can now sleep at night.&quot; - LM, Anchorage";
	testimonials[8] = "&quot;The procedure was less frightening than originally expected. The staff was outstanding.&quot; - DJ, Anchorage";
	testimonials[9] = "&quot;I am so happy with my new legs. Thank you very much.&quot; -  MS, Eagle River";
	testimonials[10] = "&quot;My procedure and treatment was so much better than I expected. Thank you.&quot; -  MM, Anchorage";
	testimonials[11] = "&quot;This procedure has made a huge difference to my whole self. My legs no longer swell. How wonderful it is to get a great night’s sleep. I have recommended this to others.&quot; -  DK, Anchorage";
	testimonials[12] = "&quot;Virtually painless procedure. Pleasant, courteous, thoughtful treatment.&quot; -  JS, Anchorage";
	testimonials[13] = "&quot;The procedure was explained thoroughly and the outcome better than expected. I should have had it done years ago.&quot; -  AG, Anchorage";
	testimonials[14] = "&quot;The relief of pain was immediate. My legs feel much better and has affected my overall mood and how my whole body feels.&quot; -  CG, Anchorage";
	testimonials[15] = "&quot;I wish I had it done sooner. Very fast recovery and no down time.&quot; -  SL, Port Alsworth, AK";
	testimonials[16] = "&quot;I was very pleased with the non-invasive approach available for my problems and the speedy recovery time..&#34 -  SC, Sutton, AK";
	testimonials[17] = "&quot;The procedure was just like the Dr. Artwohl explained. It was done fast and safe. Thank you.&quot; -   AM, Anchorage";
	testimonials[18] = "&quot;I think the procedure was wonderful. I had relief immediately. I would recommend Dr. Artwohl to anyone having vein issues.&quot; -   LG, Anchorage";
	testimonials[19] = "&quot;Outstanding job.&quot; -   WS, Anchorage";
	testimonials[20] = "&quot;Great staff.&quot; -   MD, Palmer, AK";
	testimonials[21] = "&quot;Well treated and good follow-up.&quot; -   AA, Anchorage";
	testimonials[22] = "&quot;I had the Cadillac of treatment. I attribute this to the office staff. I was made very comfortable.&quot;  -  TF, Anchorage";
	testimonials[23] = "&quot;I couldn't have been more pleased with the procedure. Dr Artwohl, Juli, Lynn and the whole staff. Great work, people!&quot; - SJ, Anchorage";
	testimonials[24] = "&quot;Recovery was faster than I expected. Relief from tired achy legs is wonderful. Staff was very supportive when I called with questions.&quot; - KG, Anchorage";
	testimonials[25] = "&quot;Walked up 3 flights of stairs, no fatigued legs. Climbed Flattop at three weeks.&quot; -  DT, Anchorage";
	testimonials[26] = "&quot;My legs feel so much lighter.&quot; -  JC, Anchorage";
	testimonials[27] = "&quot;Great staff. Walked me through every step of the treatment so I would know what's going on.&quot;  -  CF, Anchorage";
	testimonials[28] = "&quot;I couldn't have been more pleased with the procedure. Dr Artwohl, Juli, Lynn and the whole staff. Great work, people!&quot;  -  SJ, Anchorage";
	testimonials[29] = "&quot;Don't wait, do it now!&quot; -  DH, Anchorage";
	testimonials[30] = "&quot;You have made a huge difference in quality of life. We are forever grateful. Your staff is so nice.&quot; -  AH, Anchorage";
	testimonials[31] = "&quot;The staff is wonderfully supportive.&quot; -  HS, Anchorage";
	testimonials[32] = "&quot;Wonderful, wonderful, wonderful! Very happy with all the staff and doctor. Will tell everybody!&quot; -  KW, Anchorage";
	testimonials[33] = "&quot;Very knowledgeable, friendly staff that seems to do good individual and team work.&quot; -  MC, Anchorage";
	testimonials[34] = "&quot;Everyone friendly and put me at ease about the surgery.&quot; -  MM, Anchorage";
	testimonials[35] = "&quot;I have my life back!&quot; -  KW, Palmer";
	testimonials[36] = "&quot;Throughout the process I knew what to expect. The staff was considerate, informative, helpful, and friendly.&quot; -  SA, Anchorage";
	
	//get HTML for testimonials
	var testimonialDiv = document.getElementById("testimonialtext");
	
	if(page=="home"){
		var random1 = Math.floor(Math.random()*testimonials.length);
		var random2 = Math.floor(Math.random()*testimonials.length);
		while(random2 == random1){
			random2 = Math.floor(Math.random()*testimonials.length);
		}
		var random3 = Math.floor(Math.random()*testimonials.length);
		while((random3 == random2) || (random3 == random1)){
			random3 = Math.floor(Math.random()*testimonials.length);
		}
	
		testimonialDiv.innerHTML = "<p>" + testimonials[random1] + "</p><p>" + testimonials[random2] + "</p><p>" + testimonials[random3] + "</p>";
	}
	
	if(page=="testimonials"){
		for(var i=0; i<testimonials.length; i++){
			testimonialDiv.innerHTML = testimonialDiv.innerHTML + "<p>" + testimonials[i] + "</p>";
		}
		
	}
	
	
}

