/**
 * @author: Dariusz Pobożniak | http://pobozniak.pl
 *
 */
 
$(function() {
    $('h3', '#reasons')
        .siblings().hide()
        .end()
        .addClass('show')
        .click(function() {
            $(this).siblings().slideToggle();
            $(this).toggleClass('hide');
        });
})
