var PresentationConfiguration = Class.create();
PresentationConfiguration.prototype = { 
	initialize: function(){},
	debugEnabled: true,
	modules: [
	  // define presentation modules, buckets, playlists, topics
	  /****
	   * NOTES: 
	   * 
	   * A comma after the last item in any of these arrays will break IE
	   * 
	   * ID's (the first parameter in all calls below) must be unique across
	   * the entire module. For example, if more than one bucket will have an
	   * overview topic, use something like 'bucketname_overview' as the ID for
	   * the topic.
	   * 
	   ****/
    new Module( 'my_member_services', 'The Member Services Experience',  [ 
      // define buckets for this module
      new Bucket( 'introduction', 'Introduction', '', [
        // define playlists for this topic        
        new Playlist( 'default', [
          // define topics for this playlist
          new Topic( 'overall_intro', 'Overview' , '1m 9s' ),
          new Topic( 'take_charge_overview', 'Manage Your Account', '1m 9s' ),
          new Topic( 'stay_healthy_overview' , 'Get in Shape', '0m 40s' ),
          new Topic( 'make_smarter_decisions_overview' , 'Resources &amp; Programs', '0m 41s' ),
          new Topic( 'get_rewarded_overview' , 'Rewards &amp; Discounts', '0m 32s' )
        ] ) // end playlist
      ] ), // end bucket

      new Bucket( 'take_charge', 'Manage Your Account', '', [
        // define playlists for this topic
        new Playlist( 'default', [
          // define topics for this playlist
          // new Topic( 'take_charge_overview', 'Introduction', '0m 0s' ),
          new Topic( 'review_claims', 'Review Claims', '0m 30s' ),
          new Topic( 'check_benefits', 'Check Benefits', '0m 38s' ),
          new Topic( 'download_forms', 'Download Forms', '0m 38s' ),
          new Topic( 'find_doctor', 'Find a Doctor', '0m 49s' ),
          new Topic( 'find_prescription_drug', 'Find Drug Info', '0m 37s' ),
          new Topic( 'hsa_portal', 'HSA Portal', '1m 10s' ),
          new Topic( 'pay_bills_online', 'Pay Bills Online', '0m 29s' ),
          new Topic( 'request_id_card', 'Request ID Card', '0m 30s' ),
          new Topic( 'change_policy', 'Change Policy', '0m 23s' )
        ] ) // end playlist
      ] ), // end bucket
      new Bucket( 'stay_healthy', 'Get in Shape', '', [
        // define playlists for this bucket
        new Playlist( 'default', [
          // define topics for this playlist
          // new Topic( 'stay_healthy_overview' , 'Introduction', '0m 0s' ),
          new Topic( 'your_health_profile', 'Your Health Profile', '0m 43s' ),
          new Topic( 'member_health_partnerships', 'Member Health Partnerships', '0m 36s' ),
          new Topic( 'online_healthy_living', 'Online Healthy Living', '1m 46s' ),
          new Topic( 'health_line_blue', 'Health Line Blue', '0m 42s' ),
          new Topic( 'online_health_encyclopedia', 'Health Encyclopedia', '0m 41s' )
        ] ) // end playlist
      ] ), // end bucket
      new Bucket( 'make_smarter_decisions', 'Resources &amp; Programs', '', [
        // define playlists for this topic
        new Playlist( 'default', [
          // define topics for this playlist
          // new Topic( 'make_smarter_decisions_overview' , 'Introduction', '0m 0s' ),
          new Topic( 'healthcare_cost_estimator', 'Health Care Cost Estimator', '1m 87s' ),
          new Topic( 'hospital_comparison_tool', 'Hospital Comparison Tool', '0m 52s' ),
          new Topic( 'my_plan_comparison', 'Your Plan Comparison', '0m 39s' ),
          new Topic( 'medco_drug_information', 'Medco Drug Info Online', '0m 33s' ),
          new Topic( 'health_line_blue', 'Health Line Blue', '0m 42s' ),
          new Topic( 'online_health_encyclopedia', 'Health Encyclopedia', '0m 41s' )
        //  new Topic( 'resource_center', 'Resource Center', '0m 0s' )
        ] ) // end playlist
      ] ), // end bucket
      new Bucket( 'get_rewarded', 'Rewards &amp; Discounts', '', [
        // define playlists for this topic
        new Playlist( 'default', [
          // define topics for this playlist
          // new Topic( 'get_rewarded_overview' , 'Introduction', '0m 0s' ),
          new Topic( 'blue_points', 'Blue Points', '0m 51s' ),
          new Topic( 'blue_extras', 'Blue Extras', '0m 42s' )
        ] ) // end playlist
      ] ) // end bucket
    ] ) // end module
  ] // end modules
}
