  var debug;

  /* Définition pour les textes de la librairie dbx */
  /* ---------------------------------------------- */
  
  // word for "open", as in "open this box"
  txtDbxOpen = 'ouvrir';
  
  // word for "close", as in "close this box"
  txtDbxClose = 'fermer';
  
  // sentence for "move this box" by mouse
  txtDbxMoveBox = 'Réorganisez verticalement les boites en les faisant glisser'; 
  
  // pattern-match sentence for "(open|close) this box" by mouse
  txtDbxClickTo = 'Cliquez pour %toggle% cette boîte';
  
  // sentence for "move this box" by keyboard
  txtDbxKeyToMove = 'Utilisez les touches de déplacement pour déplacer cette boîte';
  
  // pattern-match sentence-fragment for "(open|close) this box" by keyboard
  txtDbxEnterToMove = ', ou la touche Enter pour %toggle%'; 
  
  // pattern-match syntax for title-attribute conflicts : %mytitle%  [%dbxtitle%]
  txtDbxTitlePattern = '%dbxtitle%'; 

function initSquelette(sid) {
//  debug = new Debug();

  //Initialisation des menus
  initMenu();
  
	//initialise the docking boxes manager
	var manager = new dbxManager(sid); 	//session ID [/-_a-zA-Z0-9/]


	//create new docking boxes group
	var rightCol = new dbxGroup(
		'rightCol', 		// container ID [/-_a-zA-Z0-9/]
		'vertical', 		// orientation ['vertical'|'horizontal']
		'7', 			// drag threshold ['n' pixels]
		'no',			// restrict drag movement to container axis ['yes'|'no']
		'10', 			// animate re-ordering [frames per transition, or '0' for no effect]
		'yes', 			// include open/close toggle buttons ['yes'|'no']
		'open', 		// default state ['open'|'closed']

		txtDbxOpen, 		
		txtDbxClose, 		
		txtDbxMoveBox, 
		txtDbxClickTo, 
		txtDbxKeyToMove, 
		txtDbxEnterToMove,  
		txtDbxTitlePattern 
		);

	//create new docking boxes group
	var summaryRightCol = new dbxGroup(
		'summaryRightCol', 		// container ID [/-_a-zA-Z0-9/]
		'vertical', 		// orientation ['vertical'|'horizontal']
		'7', 			// drag threshold ['n' pixels]
		'no',			// restrict drag movement to container axis ['yes'|'no']
		'10', 			// animate re-ordering [frames per transition, or '0' for no effect]
		'yes', 			// include open/close toggle buttons ['yes'|'no']
		'open', 		// default state ['open'|'closed']

		txtDbxOpen, 		// word for "open", as in "open this box"
		txtDbxClose, 		// word for "close", as in "close this box"
		txtDbxMoveBox, // sentence for "move this box" by mouse
		txtDbxClickTo, // pattern-match sentence for "(open|close) this box" by mouse
		txtDbxKeyToMove, // sentence for "move this box" by keyboard
		txtDbxEnterToMove,  // pattern-match sentence-fragment for "(open|close) this box" by keyboard
		txtDbxTitlePattern // pattern-match syntax for title-attribute conflicts
		);

	//create new docking boxes group
/*
	var summaryMainCol = new dbxGroup(
		'summaryMainCol', 		// container ID [/-_a-zA-Z0-9/]
		'vertical', 		// orientation ['vertical'|'horizontal']
		'7', 			// drag threshold ['n' pixels]
		'no',			// restrict drag movement to container axis ['yes'|'no']
		'10', 			// animate re-ordering [frames per transition, or '0' for no effect]
		'yes', 			// include open/close toggle buttons ['yes'|'no']
		'open', 		// default state ['open'|'closed']

		'open', 		// word for "open", as in "open this box"
		'close', 		// word for "close", as in "close this box"
		'click-down and drag to move this box', // sentence for "move this box" by mouse
		'click to %toggle% this box', // pattern-match sentence for "(open|close) this box" by mouse
		'use the arrow keys to move this box', // sentence for "move this box" by keyboard
		', or press the enter key to %toggle% it',  // pattern-match sentence-fragment for "(open|close) this box" by keyboard
		'%mytitle%  [%dbxtitle%]' // pattern-match syntax for title-attribute conflicts
		);
*/		
}//onload