
$(document).ready(function() {
    $("#landingMagento ul").hide();
    $("#landingMagento h3").toggle(function() {
       $(this).next().hide();
    }, function() {
        $(this).next().show();
        console.log($(this).next());
    });
})
