/*
 * We Move content because of the Wordpress plugin witch are fix and witch
 * use all the espace before the subject list and it cannot be modified
 * in php configuration.
 */
 
var arrayText = new Array();

function putTextForUserFriendlyHtmlStructure(jQuery, name) {
	arrayText[name] = $(jQuery).html();
	$(jQuery).html('');
}

function getTextForUserFriendlyHtmlStructure(jQuery, name) {
	$(jQuery).html(arrayText[name]);
}
