$(function(){
    $('.fn').css('cursor', 'pointer');
    $('.fn').next().hide();
    $('.fn').click(function(){
        $(this).next().slideToggle();
    })
});


