$(document).ready(function() {
	$('.accordion .toggle').each(function() {
		var next = $(this).next().find('.closable');
		next.toggle();
	});
	$('.accordion .toggle').click(function() {
		var next = $(this).next().find('.closable');
		if(next.is(':visible') > 0) {
			next.slideUp();
		} else {
			next.slideDown();
		}
		return false;
	});
});
