/* 
 * This file contains information on the season ticket packages and prices
 *
 */

 /*                      label, Package name           5   4    3 shows. Variable length arrays */
 /* Regular prices */
 var ticketPackages = [ ["label", "packagename", 5, 4, 3], 
                        ["adult", "Adult - Season ticket"  ,  5, 65, 4, 56, 3, 45],
                        ["senior", "Senior (65+) - Season ticket" ,  5, 60, 4, 52, 3, 42],
                        ["student", "Student (with ID) - Seaston ticket",  5, 55, 4, 48, 3, 39],
                        ["family", "Family - 2 Adult, 3 Student - Season ticket",  5, 250, 4, 225],  /* exact should be 84% of price - 246 and 225 */
                        ["business", "Business - 6 Adult - Season ticket",    5, 350],   /* exact ratio should be 90% of full price - 354 */
                        ["fivepack", "Five-Show Coupon Package - the Five-Pack",  5,  70],
                        ["threepack", "Holiday Three-Pack",  5, 0, 4, 0, 3, 40]   
                      ];


