<!--//

function Idea(_img, _txt)
{
	this.img = _img;
	this.txt = _txt;
}

function showImage()
{
	document.write(ideas[selectedIdea].img);
}

function showText()
{
	document.write(ideas[selectedIdea].txt);
}

var i = 0;
var ideas = new Array();

ideas[i++] = new Idea(  
	"<p>Save significant money on your health care expenses just like Arthur Goodwin did...<br /><img src='images/testimonials/01.jpg' alt='' class='photoTestimonial' /><br /><span>&ldquo;I saved $163 for my frames and lenses at Lenscrafters, and $72 from Eckard Pharmacy with Best Benefits.&rdquo;</span></p><p><a href='testimonials.php'>Read more testimonials</a> &raquo;</p>",
	""
);
ideas[i++] = new Idea(  
	"<p>Save significant money on your health care expenses just like C. McKay did...<br /><img src='images/testimonials/02.jpg' alt='' class='photoTestimonial' /><br /><span>&ldquo;I was able to save $142 for my lenses and frames and $60 off my eye exam.&rdquo;</span></p><p><a href='testimonials.php'>Read more testimonials</a> &raquo;</p>",
	""
);
ideas[i++] = new Idea(  
	"<p>Save significant money on your health care expenses just like Best Benefits member Mary Beth Stefrak did...<br /><img src='images/testimonials/03.jpg' alt='' class='photoTestimonial' /><br /><span>&ldquo;We have 3 active toddlers at home, so just about once a month it seems like we have a health emergency to contend with. It's very assuring to always be able to speak to a trained Registered Nurse at any hour, night or day.&rdquo;</span></p><p><a href='testimonials.php'>Read more testimonials</a> &raquo;</p>",
	""
);
ideas[i++] = new Idea(  
	"<p>Save significant money on your health care expenses just like this Best Benefits member did...<br /><img src='images/testimonials/04.jpg' alt='' class='photoTestimonial' /><br /><span>&ldquo;Now, after 4 years of back pain, I'm my old self again. I'm playing tennis, climbing stairs, and sleeping great. With the Best Benefits Chiropractic plan, I got treatment that I could afford.&rdquo;</span></p><p><a href='testimonials.php'>Read more testimonials</a> &raquo;</p>",
	""
);
ideas[i++] = new Idea(  
	"<p>Save significant money on your health care expenses just like this Best Benefits members did...<br /><img src='images/testimonials/05.jpg' alt='' class='photoTestimonial' /><br /><span>&ldquo;I don't have any health insurance for myself. My family has coverage, but I don't because I have a pre-existing condition. I was able to use the card to offset the cost of my prescription medication.&rdquo;</span></p><p><a href='testimonials.php'>Read more testimonials</a> &raquo;</p>",
	""
);
ideas[i++] = new Idea(  
	"<p>Save significant money on your health care expenses just like this Best Benefits member did...<br /><img src='images/testimonials/06.jpg' alt='' class='photoTestimonial' /><br /><span>&ldquo;A Best Benefits dentist is located about 1/2 miles from my home, so I gave him a try. I saved 42% on cleaning, x-rays and a comprehensive oral exam, and I like the dentist!&rdquo;</span></p><p><a href='testimonials.php'>Read more testimonials</a> &raquo;</p>",
	""
);
ideas[i++] = new Idea(  
	"<p>Save significant money on your health care expenses just like this Best Benefits member did...<br /><img src='images/testimonials/07.jpg' alt='' class='photoTestimonial' /><br /><span>&ldquo;I'm on a fixed income, so I'm thankful that I can get first-rate hearing services at such affordable prices. I especially like the free consultations and maintenance.&rdquo;</span></p><p><a href='testimonials.php'>Read more testimonials</a> &raquo;</p>",
	""
);
ideas[i++] = new Idea(  
	"<p>Save significant money on your health care expenses just like this Best Benefits member did...<br /><img src='images/testimonials/08.jpg' alt='' class='photoTestimonial' /><br /><span>&ldquo;My daughter's Best Benefits card reduced my dental bill by 59% (from $160 down to $65).  We were thrilled, especially because my Medicare doesn't cover this.&rdquo;</span></p><p><a href='testimonials.php'>Read more testimonials</a> &raquo;</p>",
	""
);

var selectedIdea = Math.floor(Math.random() * ideas.length);

//-->