var taglines=new Array("<em>Thank you for helping me with the DNA test. My daughter means  everything to me.</em><p class=red align=right>Huong<br />Lowell, MA</p>"
					   ,"<em>Immigration accepted the  results. Thank you so much for your help.</em><p class=red align=right>Matt <br /> Boston, MA</p>"
					   ,"<em>  Thanks for finishing the test so fast. I appreciate everything you've done.</em><p class=red align=right>Antonio  <br /> Boston, MA</p>"
					   ,"<em>I  am glad I chose Boston Paternity for DNA Testing. You made it easy to schedule  appointments, and I tracked the case from start to finish. Thanks for referring  me to my attorney.</em><p class=red align=right>Jose  <br /> New York, NY</p>"
					   ,"<em>My  attorney referred me to you for DNA testing, and I am happy he did. Thanks for  getting the results so quickly. You've been great.</em><p class=red align=right>Shirley <br /> Worcester, MA</p>"
					   ,"<em>You made the process so easy. I didn't think it would be this this fast.</em><p class=red align=right>Alpha  <br /> New York, NY</p>"
					   ,"<em>The test results came back so quickly! My case manager was very nice. Thank you for understanding my situation. </em><p class=red align=right>Maharth  <br /> Queens, NY</p>"
					   ,"<em>Thanks  for coming to my home to perform the collection. No other company would go out  of the way like that. It really means a lot to me.</em><p class=red align=right>Jane  <br /> Worcester, MA</p>"
					   ,"<em>Thanks for finishing the test so fast.The  process only took 3 days and now my dad is here. I appreciate everything  you've done.</em><p class=red align=right>Antonio  <br /> Miami, FL</p>"
					   ,"<em>I could not be more pleased with the service I've recieved. I think what you do is a wonderful thing;uniting families and putting to rest doubts. Thank you for expediting the procedure. You made it so easy. Thank you.</em><p class=red align=right>Robert  <br /> Middleton, MA</p>"
					   ,"<em>Many thanks for all your hard work on my case!</em><p class=red align=right>Becky <br /> Philadelphia, PA</p>"
					   ,"<em>Working with Boston Paternity was a great pleasure. The results were exactly as I expected. They are the people to rely on when you need a test.</em><p class=red align=right>Frederick  <br /> Worcester, MA</p>"
					   ,"<em>Thank you for keeping the situation confidential. I will recommend your service to my friends. God bless you!</em><p class=red align=right>Jimmy  <br /> New York, NY</p>"
					   ,"<em>Very fast results! Thank you for all your help throughout the process!</em><p class=red align=right>Paul <br /> San Jose, CA</p>"
					   ,"<em>Thanks  for helping me finish the test and get the results to immigration before my  deadline. My case manager, Brianne was excellent. I would recommend your service to everybody.</em><p class=red align=right>Martha  <br /> Bronx, NY</p>"
					   ,"<em>I  did not think you could get the DNA test done this fast. Thank you so much for  all your help.</em><p class=red align=right>Amer  <br /> New York, NY</p>"
					   ,"<em>It  was a pleasure to do testing with Boston Paternity. You made the process easy  and helped get my family to the U.S.  quickly. </em><p class=red align=right>Karina  <br /> Queens, NY</p>"
					   ,"<em>Very  accurate and very fast. Thank you BP.</em><p class=red align=right>Hung  <br /> Boston, MA</p>"

					   ,"<em>I  can't thank you enough for getting the process done so fast. I had a deadline  and you got the results to the embassy before the deadline. My family wouldn't  be here now if it wasn't for you.</em><p class=red align=right>Jean  <br /> Boston, MA</p>");
					   


function doRandomTagline()
{
    var tagline = document.getElementById("tagline");
    if (tagline)
    {
		var rnd = Math.round (Math.random() * taglines.length);
		if (rnd == taglines.length) rnd--;
		
		tagline.innerHTML = taglines [rnd];
    }
    else
        alert("couldn't find");
}