$(function () {
init("JQ_DIVDOSSIERS");
init("JQ_DIVANALYSE");
init("JQ_DIVLECTURE");
});


function init(id) {
var li = $("#" + id + " li");
var len = li.length;
if (len < 4) return;
$("#" + id).append(getLien(id));
for (var i = 3; i < li.length; i++) {
	$(li[i]).addClass("jq_LiSuivant").addClass("jq_Invisible");
}
}


function getLien(id) {
var texte = "<div class=\"touslesdossiers\" id=\"" + id + "_Lien\">[<span id=\"" + id + "_Plus\">+</span>] <a href=\"\" onclick=\"check('";
texte = texte + id;
texte = texte + "'); return false;\">";
texte = texte + localisation[id];
texte = texte + "</a></div>";
return texte;
}

function check(id) {
var jqEl = $("#" + id);
var jqLi = $("#" + id + " li.jq_LiSuivant");
var jqPlus = $("#" + id + "_Plus");
if (jqEl.hasClass("jq_Deploye")) {
	jqEl.removeClass("jq_Deploye");
	jqLi.addClass("jq_Invisible");
	jqPlus.text("+");
}
else {
	jqEl.addClass("jq_Deploye");
	jqLi.removeClass("jq_Invisible");
	jqPlus.text("-");
}
return false;
}


