SWAP_FREQUENCY = 30;

					PERIODIC_SWAP_TIMER = false;
					CURRENT_TESTIMONIAL_INDEX = 0;

					TESTIMONIAL_DIV = new Array();
					TESTIMONIAL_DIV[0] = testimonial0;
					TESTIMONIAL_DIV[1] = testimonial1;

					TESTIMONIAL_HTML = new Array();
					TESTIMONIAL_HTML[0] = 'Wow...you guys are truly amazing. I looked for about three weeks straight...surfed the internet for about a week...and every place I went to was sold out. I wanted this dress so bad and you guys came through. You  really do not know how much this means to me. Thank you so much!<br><br>Elizabeth<br>Rockville,  Maryland';
					TESTIMONIAL_HTML[1] = 'I want to thank you for your excellent service and the most beautiful prom dress. It is all I was hoping for and more. I\'ll enjoy my prom thanks to you. Thank you again for your kind service, very quick delivery. Thank you for the fulfillment of my dreams...<br><br>Jasna,<br>Slovenia';
					TESTIMONIAL_HTML[2] = 'Thank you so much for your great service. My dress arrived very quickly,was packed neatly, and most of all it was a dress that I will always remember. You guys are terrific! I will definitely use this site again.<br><br>Yours Truly,<br>Heather<br>San Antonio, Texas';
					TESTIMONIAL_HTML[3] = 'I just wanted to let you know that my daughter\'s dress arrived yesterday and is beautiful and fits her like it was tailor-made for her.  You have been a blessing during this prom crunch-time.  Thank you so much for the service and care you took with us!  I will definitely do all of my shopping with you in the future.  So look out, I have another daughter coming up behind this one!<br><br>Dana <br>Alabama';
					TESTIMONIAL_HTML[4] = 'Dear Customer Service,<br>This is just a little note to let you know that we recieved the dress and it is absolutely beautiful!!!!  My daughter is thrilled.  Thank you very, very much for everything, I greatly appreciate it!!!!!!!!<br><br>Cheryl<br>Pittsburgh, Pennsylvania';
					TESTIMONIAL_HTML[5] = 'Thanks so much for your wonderful service.  I wish we had known about your company earlier.  The dress we ordered for my daughter\'s homecoming dance was beautiful and just perfect.  The price was right and your service was outstanding.  We will definitely be ordering more gowns and dresses from you in the future.  I will be sure to tell other folks about your company.  Thanks again for helping make wonderful memories.<br><br>Diane<br>Quincy, IL';
					TESTIMONIAL_HTML[6] = 'Dear Ideal Clothing:<br>I would like to thank you for my amazing prom dress. My stunning dress fits perfectly and I couldn\'t be happier. I can\'t wait to wear it at my senior Prom in May. I recommended your website to several of my girlfriends, all of which have visited and found dresses they liked as well. Thanks again Ideal!<br><br>Holly<br>Heampstead, Maryland';

					function PeriodicSwapOn(nSeconds)
					{
						PERIODIC_SWAP_TIMER = setInterval("SwapTestimonials()", (nSeconds * 1000));
					}

					function PeriodicSwapOff()
					{
						clearInterval(PERIODIC_SWAP_TIMER);
					}

					function SwapTestimonials()
					{
						++CURRENT_TESTIMONIAL_INDEX;
						if(CURRENT_TESTIMONIAL_INDEX >= TESTIMONIAL_HTML.length)
						{
							CURRENT_TESTIMONIAL_INDEX %= TESTIMONIAL_HTML.length;
						}

						for(i = 0; i < TESTIMONIAL_DIV.length; i++)
						{
							var index = (CURRENT_TESTIMONIAL_INDEX + i);

							if(index >= TESTIMONIAL_HTML.length)
							{
								index %= TESTIMONIAL_HTML.length;
							}

							TESTIMONIAL_DIV[i].innerHTML = TESTIMONIAL_HTML[index];
						}
					}

					if(document.all)
					{
						PeriodicSwapOn(SWAP_FREQUENCY);
					}