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

