// rotating testimonials function for left box
// put items you want to show up on the page in this array ***Escape your double quotes***
var quotesl = new Array(
"<div class=\"blurbimage\"><img src=\"images/tbarnett.jpg\" alt=\"restorative dentistry\" width=\"179\" height=\"120\" border=\"0\" /></div><div class=\"blurbtext\">\"I've been coming to Grabiel &amp; Mills since <br />I moved to Birmingham. The staff <br />is great and the doctors are amazing. <br />I always leave the office smiling!\"</div>", 
"<div class=\"blurbimage\"><img src=\"images/jkreitz.jpg\" alt=\"cosmetic dentistry\" width=\"145\" height=\"120\" border=\"0\" /></div><div class=\"blurbtext\">\"I chipped a front tooth during a business dinner.<br />I returned late Friday and Dr. Grabiel came in on a Saturday <br />to restore my smile. How many dentists do you know <br />who would do that?\"</div>", 
"<div class=\"blurbimage\"><img src=\"images/wkreitz.jpg\" alt=\"cosmetic dentistry\" width=\"113\" height=\"120\" border=\"0\" /></div><div class=\"blurbtext\">\"I wanted to have my whole family go to the same <br />dentist office. Friends recommended doctors Grabiel and Mills <br />because of their great reputation, personalities and  <br />the convenient location of the offices.\"</div>",
"<div class=\"blurbimage\"><img src=\"images/bl0010-Andrea-3-19-10.jpg\" alt=\"cosmetic dentistry\" width=\"167\" height=\"120\" border=\"0\" /></div><div class=\"blurbtext\">\"My little sister and I are going to have really <br />nice teeth because my mother works for Grabiel <br />and Mills. She's a hygenist and really likes working <br />with all the nice people there.\"</div>");
// make the multiplier after Math.random()* the same as number of quotes
function displayQuotel()
{
document.write( quotesl[Math.floor(Math.random()*4)] );
} 

// rotating testimonials function for right box
// put items you want to show up on the page in this array ***Escape your double quotes***
var quotesr = new Array(
"<div class=\"blurbimage\"><img src=\"images/br0032-Kocak-3-9-10.jpg\" alt=\"restorative dentistry\" width=\"170\" height=\"120\" border=\"0\" /></div><div class=\"blurbtext\">\"I feel so confident with my fantastic new smile. <br />I was always concerned about the spaces in my <br />lower teeth. Dr. Grabiel listened to my concerns <br />and did a great job.\"</div>", 
"<div class=\"blurbimage\"><img src=\"images/g2kreitz.jpg\" alt=\"restorative dentistry\" width=\"144\" height=\"120\" border=\"0\" /></div><div class=\"blurbtext\">\"My new braces fit so well because of the <br />time and care that everyone took with me. <br />It won't be long and I'll have nice straight teeth <br />that will look great for the rest of my life.\"</div>", 
"<div class=\"blurbimage\"><img src=\"images/g1kreitz.jpg\" alt=\"cosmetic dentistry\" width=\"107\" height=\"120\" border=\"0\" /></div><div class=\"blurbtext\">\"I was lucky as a kid - I didn't need braces. <br />Now that I'm getting a little older, I have to remember <br />to take care of my teeth by not drinking too much<br /> soda and brushing properly after meals.\"</div>", 
"<div class=\"blurbimage\"><img src=\"images/b1kreitz.jpg\" alt=\"cosmetic dentistry\" width=\"131\" height=\"120\" border=\"0\" /></div><div class=\"blurbtext\">\"My Mom and Dad and sisters all come to <br />Grabiel &amp; Mills. Everyone there is great <br />at what they do and I know my teeth and gums <br />are healthy because of their help.\"</div>");
// make the multiplier after Math.random()* the same as number of quotes
function displayQuoter()
{
document.write( quotesr[Math.floor(Math.random()*4)] );
} 
