$(function(){
$(".link_list_button em").click(function(ev) {
$(this).nextAll().each(function(){
$(this).slideToggle("fast");
});
} );
});

