jQuery(document).ready(function(){
	$('.accordion .side_button').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();
});
