var req="";
$(document).ready(function() {
	

	$(".fiche_complete").click(function(){swap_article(this);})
	$("#f_raz").click(function(){raz_recherche(); })
	$("#logo-cgb").click(function() {raz_full(); })
	$("#message_ouverture").fadeIn(2000);
})

function raz_full()
{
	
	$.ajax({type: "POST",url: "js_razfull.php"});
}
function raz_recherche()
{
	$("#f_recherche").val("");
	
}

function ouvre_article(arg)
{
	
	var selectionne=$(document).find("#message_"+arg).find(".article");
	$(selectionne).slideDown(200)
	
	
}
function swap_article(arg)
{
	
	var selectionne=$(arg).find(".article");
	var etat=$(selectionne).css("display");
	if (etat=="block") return;
	$(".article").slideUp()
	$(selectionne).slideDown()
}

