//Motivational quotes script
//By JavaScript Kit (http://javascriptkit.com)
//Over 400+ free scripts here!
jQuery(document).ready(function() {
	var quotes=new Array();
	
	//change the quotes if desired. Add/ delete additional quotes as desired.
	
	quotes[0]='<p><i>"Thanks for making me family. Youre the best!" </i><br />-Rita<br /><a style="float:right" href="test.htm">Read More...</a></p>';
	
	quotes[1]='<p><i>"Thank you for everything that you did for me . . . May God Bless You!"</i><br />-Sue<br /><a style="float:right" href="test.htm">Read More...</a></p>';
	
	quotes[2]='<p><i>"Thank you for your excellent care of Monica during our "mini-crisis". . . Please let us know if we can ever be of service to any of your family members. We appreciate your kindness...</i><br /><a style="float:right" href="test.htm">Read More...</a></p>';
	
	quotes[3]='<p><i>"Bob and I want to thank you so much for your kindness and help."</i><br />-Nancy<br /><a style="float:right" href="test.htm">Read More...</a></p>';
	
	quotes[4]='<p><i>"Thank you is so inadequate to express my gratitude! Thank you for my plastic surgery. By using Gods gifts and talents He gave you . . . you in turn have given me a new lease on life..."</i><br /><a style="float:right" href="test.htm">Read More...</a></p>';
	
	quotes[5]='<p><i>"No words of gratitude can express my appreciation! Julie is just beginning to experience a new found joy and peace of mind. Thanks to Gods grace and your skills, Julie has both a brighter...</i>"<a style="float:right" href="test.htm">Read More...</a></p>';
	
	
	var whichquote=Math.floor(Math.random()*(quotes.length-1));
	jQuery("#list2 .info1").append( quotes[whichquote] );
	
});