function Program(title, description)
{
	this.title = title;
	this.description = description;
	
} //end Program

var program = new Array();

program[0] = new Program
(
	"Marriage Maintenance",
	"Offers couples helpful ways of enriching their relationship and reducing stress in their marriage."
);

program[1] = new Program
(
	"Positive Parenting",
	"Six-week course offering help in becoming more confident and effective parents."
);

program[2] = new Program
(
	"Parent To Parent For Safe & Drug-Free Youth",
	"Video-based seminars that teach parents how to work with other parents."
);

program[3] = new Program
(
	"Transparenting: Children of Divorce",
	"Adults learn about ways children react to separation, divorce and methods of helping them adjust."
);

program[4] = new Program
(
	"Rollercoasters",
	"Group designed for children who have experienced parental separation, divorce, or other changes in family structure."
);

program[5] = new Program
(
	"Grief Training for Clergy and Congregations",
	"Clergy, lay leaders and congregation members learn about the grief process and effective ways to provide bereavement ministry and support within your church community."
);

program[6] = new Program
(
	"Basic Congregational Care",
	"Lay counselor training in caring for basic congregational needs."
);

program[7] = new Program
(
	"Engaged Couples Training",
	"Program utilizing inventory, counseling and educational program to help couples identify areas for growth, build on strengths and communicate more effectively."
);

program[8] = new Program
(
	"Assertiveness Training",
	"Six-session course to increase communication effectiveness and enhance relationships."
);

program[9] = new Program
(
	"Search for Significance",
	"Series of supportive workshops for women desiring personal and spiritual growth."
);

program[10] = new Program
(
	"Bridgebuilder",
	"Structured process for helping congregations in times of transition and tension."
);

program[11] = new Program
(
	"Recovery of Hope for Marriages: The Seminar",
	"A three-hour session where a team of three couples share their experiences of disillusionment and the events and insights that created a spark of hope for them to attempt reconciliation."
);

program[12] = new Program
(
	"Recovery of Hope for Marriages: Intensive Marital Therapy Program",
	"A three to five day program for couples who want to get away from the daily pressures of work and family to give serious thought to their marriage."    
);


