$(document).ready(function(){
	$("ul.newsList p.fullNews").css("display", "none").each(function() {
		if ($(this).next().is("p")) {
			$(this).next().prepend("<a href=\"#\" title=\"Détailler la brève\" class=\"closed left clearLeft\">Détailler la brève</a>");
		} else {
			$(this).after("<p class=\"newsLinks\"><a href=\"#\" title=\"Détailler la brève\" class=\"closed left clearLeft\">Détailler la brève</a></p>");
		}
	});
	
	$("ul.newsList a.closed").toggle(
		function(){
			$(this).removeClass("closed");
			$(this).addClass("opened");
			$(this).attr("title", "Fermer la brève");
			$(this).html("Fermer la brève");
			$(this).parent().prev("p").slideToggle("normal");
			return false;
		},
		function(){
			$(this).removeClass("opened");
			$(this).addClass("closed");	
			$(this).attr("title", "Détailler la brève");
			$(this).html("Détailler la brève");			
			$(this).parent().prev("p").slideToggle("normal");
			return false;
		}
	);
	
	if (location.hash) {
		$("ul.newsList a#" + location.hash.slice(1)).next("p").next("p").next("p").next("p").children("a").click();
	}
	
});
