$(document).ready(function(){

ouvert = false;


    $("button").click(function () {
      $("p").slideToggle("slow");
    });


$('.open_close').click(function() {
	
		$('#toolbox').slideToggle();

		if (ouvert){
			$('#toolboxbutton').css('background-image', 'url(./style/images/onglet_outils.png)')
			document.getElementById('toolboxbutton').title = "Ouvrir la boîte à outil";
			ouvert = false;
			}
			
		else {
			$('#toolboxbutton').css('background-image', 'url(./style/images/onglet_outils_open.png)')
			document.getElementById('toolboxbutton').title = "Fermer la boîte à outil";
			ouvert = true;
			}
	})



})

