var j$ = jQuery;  

$(document).ready(function(){
	$(".menu_prof").click(function(){
		$(this).next().slideToggle('slow');
	});
});
