/* Functions to set tutorial topics
 *   16-May-2007   tmcnaney   Updated for WF4 HOW, extracted from index.htm
 *   06-Jun-2007   tmcnaney   Stripped out all but essential code as prototype for TB
 *   25-Jun-2007   tmcnaney   Prepare for posting on PTC.com
 */

// Define constuctor for tutorial topic objects
function Topic(id, src, title, desc, pages) {
	this.id = id;
	this.src = src;
	this.title = title;
	this.desc = desc;
	this.pages = pages;
} // end of Topic

/* define array of topic objects
 * order listed is significant, and determines navigation sequence
 * Topic ID must be unique, and match tutorial_xxxx folder name
 * MAKE SURE TO END EACH LINE WITH A COMMA, EXCEPT FINAL ENTRY
 */
var topics = new Array (
   new Topic(0, '../toc/index.htm', 'Table of Contents', 'Listing of Tutorial Topics', 1),
   new Topic(3245, '../tutorial_3245/index.htm', 'Introduction','High-level overview for Pro/ENGINEER Wildfire 4.0 Preproduction, Objectives and Instructions for this workshop.', 4),
   new Topic(3271, '../tutorial_3271/index.htm', 'Core Design','Create both simple and complex designs faster with new features like Auto Round™, improved holes, shells, sketcher, and more...Save valuable time with Remove Surface to prepare designs for analysis or toolmaking.', 7),
   new Topic(3246, '../tutorial_3246/index.htm', '3D Drawings','Deliver 3D model-centric production drawings faster and easier with automatic 3D Annotation Features from driving dimensions, modal annotation orientation, and View Manager layer status.', 5),
   new Topic(3268, '../tutorial_3268/index.htm', 'Surface Design','New Surface Edit tool enables direct manipulation of complex surfaces in a powerful and flexible way to achieve more advanced shapes easier and faster.  Other enhancements include the Style Tree and Curve tuning.', 5),
   new Topic(3256, '../tutorial_3256/index.htm', 'Advanced Rendering','Create realistic images of your products faster with easy floor placement, region rendering, dynamic textures, and environment lighting.', 6),
   new Topic(3247, '../tutorial_3247/index.htm', 'Electromechanical','ECAD-MCAD Design Collaboration enables easy identification of changes with cross-highlighting, and fast integration with incremental updates. New support for creating and Routing Ribbon Cabling.', 3),
   new Topic(3272, '../tutorial_3272/index.htm', 'Simulation','Erase the barrier separating design and analysis.  Improved usability and new capabilities like non-linear materials and contact with friction enable a broader spectrum of users to solve more problems.', 5),
// new Topic(3914, '../tutorial_3914/index.htm', 'Tolerance Analysis','Placeholder for Tolerance Analyis tutorial', 1),
// new Topic(3863, '../tutorial_3863/index.htm', 'Digital Rights Management','Placeholder for DRM tutorial',1),
   new Topic(3257, '../tutorial_3257/index.htm', 'Import DataDoctor&trade;','Import DataDoctor enhancements enable faster and more powerful repair of imported geometry with visual feedback of the repair process.', 6),
   new Topic(3236, '../tutorial_3236/index.htm', 'Feature Recognition','New Feature Recognition Toolkit (FRT) converts selected imported model geometries to parametric features in Pro/ENGINEER - including holes, rounds, chamfers, and extrudes.', 7),
   new Topic(3265, '../tutorial_3265/index.htm', 'Manufacturing','Modernized UI and Process Manager improvements make it faster and easier to create optimal NC toolpaths for maximum product quality and fabrication speed.', 7)
);

/*
 * end of topics.js
 */