//gestion du menu formulaire recherche de commande
$(document).ready(function(){
	//Hide (Collapse) the toggle containers on load
	$("#nav_boite_suivi_commande #conteneur_form").hide(); 

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$("#bt_suivi_commande").click(function(){
	$("#nav_boite_suivi_commande #conteneur_form").toggle('slow');	
	});

});

