var relation = new Array();
relationships = new Array(); 
function relationship(rel, category, subCategory )
{
 	this.rel = rel
	this.category = category
	this.subCategory = subCategory
}
function relCat(rel, category)
{
  this.rel = rel
 this.category = category 
}

relCats = new Array()
relation[0] = "Current Chrysler Financial Customer";
relCats[0] = new relCat("Current Chrysler Financial Customer", "Lease");
relationships[0] = new relationship("Current Chrysler Financial Customer", "Lease", "Payoff")
relationships[1] = new relationship("Current Chrysler Financial Customer", "Lease", "Billing/Payment")
relationships[2] = new relationship("Current Chrysler Financial Customer", "Lease", "Turn in Process")
relationships[3] = new relationship("Current Chrysler Financial Customer", "Lease", "Registration")
relationships[4] = new relationship("Current Chrysler Financial Customer", "Lease", "Update Personal Information")
relationships[5] = new relationship("Current Chrysler Financial Customer", "Lease", "Terms/Conditions")
relationships[6] = new relationship("Current Chrysler Financial Customer", "Lease", "Refunds")
relationships[7] = new relationship("Current Chrysler Financial Customer", "Lease", "Due Date Change")
relationships[8] = new relationship("Current Chrysler Financial Customer", "Lease", "Deferral")
relationships[9] = new relationship("Current Chrysler Financial Customer", "Lease", "Compliments")
relationships[10] = new relationship("Current Chrysler Financial Customer", "Lease", "Comments")
relationships[11] = new relationship("Current Chrysler Financial Customer", "Lease", "Dealer Information/location")
relationships[12] = new relationship("Current Chrysler Financial Customer", "Lease", "Check AUTO-PAY Status")
relationships[13] = new relationship("Current Chrysler Financial Customer", "Lease", "Other")
relCats[1] = new relCat("Current Chrysler Financial Customer", "Retail");
relationships[14] = new relationship("Current Chrysler Financial Customer", "Retail", "Payoff")
relationships[15] = new relationship("Current Chrysler Financial Customer", "Retail", "Billing/Payments")
relationships[16] = new relationship("Current Chrysler Financial Customer", "Retail", "Information on Financing")
relationships[17] = new relationship("Current Chrysler Financial Customer", "Retail", "Comments")
relationships[18] = new relationship("Current Chrysler Financial Customer", "Retail", "Compliments")
relationships[19] = new relationship("Current Chrysler Financial Customer", "Retail", "Re-Financing")
relationships[20] = new relationship("Current Chrysler Financial Customer", "Retail", "Due Date Change")
relationships[21] = new relationship("Current Chrysler Financial Customer", "Retail", "Extension")
relationships[22] = new relationship("Current Chrysler Financial Customer", "Retail", "Update Personal Information")
relationships[23] = new relationship("Current Chrysler Financial Customer", "Retail", "Dealer Information/Location")
relationships[24] = new relationship("Current Chrysler Financial Customer", "Retail", "Check AUTO-PAY Status")
relationships[25] = new relationship("Current Chrysler Financial Customer", "Retail", "Other")
relCats[2] = new relCat("Current Chrysler Financial Customer", "General");
relationships[26] = new relationship("Current Chrysler Financial Customer", "General", "Our Site")
relationships[27] = new relationship("Current Chrysler Financial Customer", "General", "Compliments")
relationships[28] = new relationship("Current Chrysler Financial Customer", "General", "Comments")
relationships[29] = new relationship("Current Chrysler Financial Customer", "General", "Other")
relation[1] = "Not a Chrysler Financial Customer";
relCats[3] = new relCat("Not a Chrysler Financial Customer", "Financing Information");
relationships[30] = new relationship("Not a Chrysler Financial Customer", "Financing Information", "Information on Financing Options")
relationships[31] = new relationship("Not a Chrysler Financial Customer", "Financing Information", "Apply for Credit")
relationships[32] = new relationship("Not a Chrysler Financial Customer", "Financing Information", "Dealer Information/Location")
relationships[33] = new relationship("Not a Chrysler Financial Customer", "Financing Information", "Other")
relCats[4] = new relCat("Not a Chrysler Financial Customer", "General");
relationships[34] = new relationship("Not a Chrysler Financial Customer", "General", "Our Site")
relationships[35] = new relationship("Not a Chrysler Financial Customer", "General", "Compliments")
relationships[36] = new relationship("Not a Chrysler Financial Customer", "General", "Comments")
relationships[37] = new relationship("Not a Chrysler Financial Customer", "General", "Other")
