



//initialise the docking boxes manager
/*
var manager = new dbxManager(
	'main',					// session ID [/-_a-zA-Z0-9/]
	'yes',					// enable box-ID based dynamic groups ['yes'|'no']
	'yes',					// hide source box while dragging ['yes'|'no']
	'button'				// toggle button element type ['link'|'button']
	);
*/
var manager = new dbxManager('main');		

//create new docking boxes group
var purple = new dbxGroup(
	'cajas', 				// container ID [/-_a-zA-Z0-9/]
	'vertical', 			// orientation ['vertical'|'horizontal'|'freeform'|'freeform-insert'|'confirm'|'confirm-insert']
	'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']
	'closed', 				// default state ['open'|'closed']

	'abrir', 										// word for "open", as in "open this box"
	'cerrar', 										// word for "close", as in "close this box"
	'Haga click y arrastre para mover este bloque', 		// sentence for "move this box" by mouse
	'Haga click para %toggle% este bloque', 					// pattern-match sentence for "(open|close) this box" by mouse
	
	'use las teclas de cursor para move este bloque ', 		// sentence for "move this box" by keyboard
	', o pulse la tecla key para %toggle% ',	// pattern-match sentence-fragment for "(open|close) this box" by keyboard
	
	'%mytitle%  [%dbxtitle%]', 						// pattern-match syntax for title-attribute conflicts

	'hit the enter key to select this target',		// confirm dialog sentence for "selection okay"
	'sorry, this target cannot be selected'			// confirm dialog sentence for "selection not okay"
	);



