function fn_CollapseBox(id)
{
	var box = $(id);
	box.set('class', 'collapsible_box_close');
	box.morph({width:38, height:37});
	var toggle = box.getElement('a.close_button');
	toggle.set('href', 'javascript:fn_ExpandBox(\'' + id + '\');');
	var toggle_img = toggle.getElement('img');
	toggle_img.set('src', '/images/box/open_button.png');
}

function fn_ExpandBox(id)
{
	var box = $(id);
	setTimeout('$(\'' + id + '\').set(\'class\', \'collapsible_box_open\');', 500);
	box.morph({width:401, height:260});
	var toggle = box.getElement('a.close_button');
	toggle.set('href', 'javascript:fn_CollapseBox(\'' + id + '\');');
	var toggle_img = toggle.getElement('img');
	toggle_img.set('src', '/images/box/close_button.png');
}
