$(document).ready(function() {
    $(".shop-body").hide();
    $(".shop-head").click(function() {
        $(this).next(".shop-body").slideToggle(400);
    });
});
