/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting
Script edited and maintained by webconsuls.com */

var num_of_quotes = 6;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
body="Dr. Ahern has valuable skills and knowledge that are backed by education and scientific data. This is what makes her different than others who claim to coach...";
from="- Amanda Rammel";
}

if (quotes==1) {
body="Terrific! Dr. Ahern imparts the importance of compassionately, patiently, but firmly bringing our patterns to awareness. Adrianne reminds us that our thoughts are...";
from="- Ken Druck";
}

if (quotes==2) {
body="With a life that revolves around constant deadlines, I find Dr. A's techniques for snapping out of mental blocks and limitations both brilliant and easy...";
from="- Linda Sivertsen";
}

if (quotes==3) {
body="I saw your Public Television Special yesterday on our local PBS station, WCET--Cincinnati. I was thoroughly impressed with your material and your presentation...";
from="- Larry";
}

if (quotes==4) {
body="With astonishing clarity, wisdom and compassion, Adrianne Ahern provides tools to help us transcend the limitations of our negative programming...";
from="- Arielle Ford ";
}

if (quotes==5) {
body="I just wanted to say how thrilled I was with your talk at Scripps La Jolla tonight (5/6). I have my MA in Sport Psychology & am exploring PhD options....";
from="- Beverly Hosford ";
}


document.write('<p style="text-align:left; padding:10px; font-style:italic; height:90px;">');
document.write ('&quot;');
document.write(''+ body +'');
document.write ('&quot;');
document.write('<br /><span style="text-align:right; padding-left:20px; font-weight:bold;">' + from + '</span>');
document.write('</p>');

