	// styling array
	var tableStyle = [
		['MAN\310GE', 'TAILLE REQUISE', '\311VALUATION'], // the title you see for the column
		[ false, false, 'thrillRating'], // class for defining special column behaviour (thrill rating, fun planner)
		[ false, false, false], // false for default styling, number in pixels for override.
																		[ // filtration and sort settings go in here.
																		  0, // first node is the column to sort by, zero is default.
		
			[ // filter 0 
			  [1, 'Afficher la liste accesible au personnes mesurant : ', 'Tous les man\350ges'], // [column applies to, enabler description, removal description]
			  [ 
				['92 cm', '92', 'LT'],
				['1m 12', '112', 'LT'],
				['1m 32', '132', 'LT'],
				['1m 37', '137', 'LT']
			  ]
			],
			[ // filter 1 
			  [2, 'Afficher les man\350ges evalu\351s: ', 'Tous les man\350ges'], // [column applies to, enabler description, removal description]
			  [ 
				['Maximum', '3', 'EQ'],
				['Mod\351r\351', '2', 'EQ'],
				['Doux', '1', 'EQ']
			  ]
			]
																		], '/larondefr/func/asp/<%=strSourceListe%>'
	   ]; // end tableStyle 

		// will hold any/all table objects
			var allTables = [];


		// will initialize tables
			var setTables = function() {
				if (document.getElementById('dynTable-ridesMatrix')) { allTables.push(new dynTable(tableStyle, document.getElementById('dynTable-ridesMatrix'))); }
			}
