/* 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
 *   09-Jul-2007   tmcnaney   quick test with WF3 content
     20-Nov-2007   tmcnaney   updated for WF4 Tryout
 */

// 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', 'Sommario', 'Pagina iniziale per l\'elenco di argomenti delle esercitazioni', 1),
   new Topic(3851, '../intro/index.htm', 'Introduzione', 'Apprendete come navigare le esercitazioni.', 4),
   new Topic(3483, '../tutorial1/index.htm', 'Introduzione a Pro/ENGINEER', 'Acquisite familiarità con Pro/ENGINEER', 3),
   new Topic(3479, '../tutorial2/index.htm', 'Modellazione di parti', 'Apprendete le tecniche di base per la modellazione di parti 3D.', 6),
   new Topic(3481, '../tutorial3/index.htm', 'Creazione di sketch', 'Apprendete come utilizzare lo strumento Sketcher.', 8),
   new Topic(3485, '../tutorial4/index.htm', 'Creazione di disegni', 'Create velocemente disegni da un modello 3D.', 6),
   new Topic(3486, '../tutorial5/index.htm', 'Serie', 'Create serie in secondi invece che ore.', 9),
   new Topic(3487, '../tutorial6/index.htm', 'Assemblaggio di componenti', 'Apprendete come sia semplice assemblare componenti.', 9),
   new Topic(3488, '../tutorial7/index.htm', 'Riutilizzo di file 2D', 'L\'esercitazione perfetta se dovete riutilizzare file 2D.', 11)
);

/*
 * end of topics.js
 */
