window.addEvent('domready', function() {
	cbb.init();

	if ((ct = $("tinymceContent")) !== null) {
		// Expand the tinyMCE textarea to, at least, 400px (=> window scroll) or the window height if it's big enough :
		ct.setStyle("height", Math.max(400,window.getSize().y - ct.offsetTop) - 100);
	}
});
