function blog_js_loader()
{
	// Initialise the docking boxes manager.
	var manager = new dbxManager('main');			// session ID [/-_a-zA-Z0-9/]

	// Create new docking boxes group.
	var dockingbar = new dbxGroup (
		'sidebar-dock',								// 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 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
	);

	// Ratable images.
	start_image_rating('post');

	var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;
	if(!IE6) {
		addReflections();
	}
};
