/**
 * /ajax/container.js
 *
 * Dragonea (http://www.dragonea.com)
 *
 * @author Jejem <jejem@phyrexia.org>
 * @copyright Jérémy 'Jejem' Desvages
**/

function offContent(container) {
	$(container+'_ajax').innerHTML = '<img src="media/image/show.png" width="9" height="9" alt="+" title="+" />';

	new Effect.Fade($(container+'_content'));

	return true;
}

function onContent(container) {
	$(container+'_ajax').innerHTML = '<img src="media/image/hide.png" width="9" height="9" alt="-" title="-" />';

	new Effect.Appear($(container+'_content'));

	return true;
}

function toggleContent(container) {
	if ($(container+'_content').visible())
		offContent(container);
	else
		onContent(container);

	return true;
}
