function boxIt(boxId)
{
	var box = $(boxId);
	var boxTitle = $$('#' + boxId + ' div.box-title')[0];
	var boxBody = $$('#' + boxId + ' div.box-body')[0];

	var boxTopRight = new Element('div', {'class': 'box-top-right'});
	boxTitle.injectInside(boxTopRight);

	var boxTopLeft = new Element('div', {'class': 'box-top-left'});
	boxTopRight.injectInside(boxTopLeft);

	boxTopLeft.injectBefore(boxBody);


	var boxRight = new Element('div', {'class': 'box-right'});
	boxBody.injectInside(boxRight);

	var boxLeft = new Element('div', {'class': 'box-left'});
	boxRight.injectInside(boxLeft);

	boxLeft.injectAfter(boxTopLeft);


	var boxBottomLeft = new Element('div', {'class': 'box-bottom-left'});
	var boxBottomRight = new Element('div', {'class': 'box-bottom-right'});
	var boxBottom = new Element('div', {'class': 'box-bottom'});
	boxBottom.injectInside(boxBottomRight);
	boxBottomRight.injectInside(boxBottomLeft);
	boxBottomLeft.injectAfter(boxLeft);
}