function affiche_cache_div(id){
	
	if($('#'+id).css("display") == 'none') 	$('#'+id).slideDown("slow");
	else 									$('#'+id).slideUp("slow");
}
