$(document).ready(function() {
    $('.more-info').each(function() {
        $(this).hide();
        var info = this;
        var button = $('<img style="cursor: pointer" " src="/images/more-info.png" />');
        $(this).prev().append(' ').append(button);
        button.click(function() {
            $(info).toggle('fast');
        });
    });
    
    $('.more-info-text').each(function() {
        $(this).hide();
        var text = this;
        $(this).prevAll('.more-info-heading:first').click(function() {
            $(text).toggle('fast');
        });
    });
    
});


