$(function(){ 
	$(".accordeon").click(function(){ 
		$(this).next('ul').slideToggle(); 
	}).next("ul").hide(); 
});
