$(document).ready(function() {
    $('div.feature_list').children('div.title').click(function() {
        var content = $(this).next('div.content');

        if (content.length) {
            if (content.is(':visible')) {
                content.fadeOut();
                $(this).removeClass('title_clicked');
            } else {
                content.fadeIn();
                $(this).addClass('title_clicked');
            }
        }
    });
});
