window.onload = function()

{
//initialise the docking boxes manager
var Manager = new dbxManager('navigation');     //session ID [/-_a-zA-Z0-9/]

//create new docking boxes group
var navigation = new dbxGroup(
	'grp-navigation',       // container ID [/-_a-zA-Z0-9/]
	'vertical',     // orientation ['vertical'|'horizontal']
	'7',            // drag threshold ['n' pixels]
	'yes',           // restrict drag movement to container axis ['yes'|'no']
	'10',           // animate re-ordering ['n' frames per transition]
	'yes',          // include open/close toggle buttons ['yes'|'no']
	'open',         // default state ['open'|'closed']
	'ouvrir',         // word for "open", as in "open this box"
	'fermer',        // word for "close", as in "close this box"
	'Cliquer sur un bouton puis glisser pour déplacer cette boîte', // sentence for "move this box" by mouse
	'Cliquer pour %toggle% cette boîte', // pattern-match sentence for "(open|close) this box" by mouse
	'Appuyer sur entrée pour %toggle% la boîte', // pattern-match sentence-fragment for "(open|close) this box" by keyboard
	'ou utiliser les flêches pour la déplacer', // sentence for "move this box" by keyboard
	'%mytitle%  [%dbxtitle%]' // pattern-match syntax for title-attribute conflicts
	);
};
