$(document).ready(function() {
	$('.collapse').next('div').hide();
	$('.collapse:first').next('div').show();
	$('.collapse').click(function() {
		$(this).next('div').slideToggle('fast');
	});
});