/**
 * @author Nicolas
 */
var tout;
function hideAussi()
{
	tout = setTimeout("$('#aussi').hide('slow')", 1000);
}

function showAussi()
{
  clearTimeout(tout);
  $('#aussi').show('slow');
}