var Q = new Array;
var A = new Array;


Q[Q.length] = "It comes down to this, plain and simple. Project Hospitality is in the business of saving lives... (and) helped save my life.";
A[A.length] = "";

Q[Q.length] = "It wasn't until I came here that I was able to start recovery. They give me the guidance to get my self-esteem back because I'd lost everything.";
A[A.length] = "";

Q[Q.length] = "Today, thanks to Project Hospitality, I live in a nice apartment. I am going for my GED, and from there, hopefully, I will be working by the first of the year.";
A[A.length] = "";

Q[Q.length] = "I thank God and people too — my family, friends, and support group. Project Hospitality has been great to me. They helped me when no one else would. They helped me when I couldn't help myself.";
A[A.length] = "";

Q[Q.length] = "They help us through the rough times... I love Project Hospitality because they have given me back my life and given my two kids back their father.";
A[A.length] = "";

Q[Q.length] = "I'm staying clean and sober because of Project Hospitality... Project Hospitality saved my life.";
A[A.length] = "";

Q[Q.length] = "If it were not for the people at PH, I would either be dead or in jail.";
A[A.length] = "";

Q[Q.length] = "I would like to thank you for everything you did for my Mom, sister, and me. You changed my Mom's life around and mine too. Thank you for everything!";
A[A.length] = "";

Q[Q.length] = "When we needed a place to stay, you gave it to us. When I needed food and clothes, you gave my Mom donations. When I moved, you were still there for me.";
A[A.length] = "";

Q[Q.length] = "Project Hospitality has allowed me to appreciate my life as I live it today, clean and sober, being able to address my newfound lifestyle without the use of drugs in my life.";
A[A.length] = "";

Q[Q.length] = "I now have a house, a home to live in. Yes, a real room with a window, a bathroom not a bus depot washroom. A meal made instead of garbage picking - a place to stay sober and be sober.";
A[A.length] = "";


var quotePrefix='<p align=center><b><font style="font-family: Tahoma, Arial, sans serif;font-size: 11px;color:#003582;">';
var quoteDelimiter='</font></b><br><font style="font-family: Tahoma, Arial, sans serif;font-size: 10px;color:#003582;"> ';
var quoteSuffix='</font></p>';

function randomQuote() {
	n=Math.round((Math.random()) * (Q.length - 1));
	return quotePrefix + Q[n] + quoteDelimiter + A[n] + quoteSuffix;
}

