/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function()
{
    $('#menu_gauche_ajout_contenue').hide();
    
    $('#menu_gauche_ajout_title').click(function() {
		$('#menu_gauche_ajout_contenue').toggle();
		return false;
	}).$('#menu_gauche_ajout_contenue').hide();

});