$(document).ready(function(){
    $('.accordionHead').click(function() {
        $(this).next().slideToggle();
    }).next().hide();
});

