$(document).ready(function() {
	$("#abtn_ajouter_mytho").click(function() {
		if ($("#bloc_ajouter_mytho").is(":hidden")) {
			$("#bloc_ajouter_mytho").show();
		} else {
			$("#bloc_ajouter_mytho").hide();
		}
	});
	$("#btn_fermer").click(function() {
		$("#bloc_ajouter_mytho").hide();
	});
});

function showFormEmail(checkbox)
{
	if(checkbox.checked == true)
	{
		document.getElementById("formEmail").style.display = "block";
	}
	else
	{
		document.getElementById("formEmail").style.display = "none";
	}
}

$(document).ready(function() {
	$.featureList(
		$("#tabs li a"),
		$("#output li"), {
			start_item	:	1
		}
	);
});
