function prod_show (){
	
	var x = document.getElementById('philo_prod');
	var y = document.getElementById('listeprod');
	
	x.style.backgroundColor='#26ade5';
	y.style.visibility='visible'
}
			
function prod_hide(){
	var y = document.getElementById('listeprod');
	y.style.visibility='hidden'
}
