/*
Structuré sur jQuery
http://www.miluna.eu/
*/

$(document).ready(function() // Agir dès que le DOM est prêt
{  	
	$("#a-propos-box").hide();
	$("#a-propos").click(function(){ // rend tout le block entièrement cliquable
		if ($("#a-propos-box").is(":hidden")){
			$("#a-propos-box").removeClass('hidden');
			$("#a-propos-box").show();
		}else{
			$("#a-propos-box").hide();
		}
		return false;
	});
	$("#a-propos-box").click(function(){ // rend tout le block entièrement cliquable
		$(this).hide();
	});
});



