



//initialise the docking boxes manager
var manager = new dbxManager(
	'iphone',				// session ID [/-_a-zA-Z0-9/]
	'yes',					// enable box-ID based dynamic groups ['yes'|'no']
	'yes',					// hide source box while dragging ['yes'|'no']
	''						// toggle button element type ['link'|'button']
	);


//create a docking boxes group for the desktop area
var desktop = new dbxGroup(
	'desktop', 				// container ID [/-_a-zA-Z0-9/]
	'freeform-insert', 		// orientation ['vertical'|'horizontal'|'freeform'|'freeform-insert'|'confirm'|'confirm-insert']
	'10', 					// drag threshold ['n' pixels]
	'no',					// restrict drag movement to container/axis ['yes'|'no']
	'12', 					// animate re-ordering [frames per transition, or '0' for no effect]
	'no', 					// include open/close toggle buttons ['yes'|'no']
	'', 					// default state ['open'|'closed']

	'', 										// word for "open", as in "open this box"
	'', 										// word for "close", as in "close this box"
	'click-down and drag to move this icon',	// sentence for "move this box" by mouse
	'', 										// pattern-match sentence for "(open|close) this box" by mouse
	'use the arrow keys to move this icon', 	// sentence for "move this box" by keyboard
	'',  										// pattern-match sentence-fragment for "(open|close) this box" by keyboard
	'%mytitle%  [%dbxtitle%]', 					// pattern-match syntax for title-attribute conflicts

	'',											// confirm dialog sentence for "selection okay"
	''											// confirm dialog sentence for "selection not okay"
	);



//create a docking boxes group for the dock row
var dock = new dbxGroup(
	'dock', 				// container ID [/-_a-zA-Z0-9/]
	'horizontal', 			// orientation ['vertical'|'horizontal'|'freeform'|'freeform-insert'|'confirm'|'confirm-insert']
	'10', 					// drag threshold ['n' pixels]
	'yes',					// restrict drag movement to container/axis ['yes'|'no']
	'12', 					// animate re-ordering [frames per transition, or '0' for no effect]
	'no', 					// include open/close toggle buttons ['yes'|'no']
	'', 					// default state ['open'|'closed']

	'', 										// word for "open", as in "open this box"
	'', 										// word for "close", as in "close this box"
	'click-down and drag to move this icon', 	// sentence for "move this box" by mouse
	'', 										// pattern-match sentence for "(open|close) this box" by mouse
	'use the arrow keys to move this icon', 	// sentence for "move this box" by keyboard
	'',  										// pattern-match sentence-fragment for "(open|close) this box" by keyboard
	'%mytitle%  [%dbxtitle%]', 					// pattern-match syntax for title-attribute conflicts

	'',											// confirm dialog sentence for "selection okay"
	''											// confirm dialog sentence for "selection not okay"
	);






