// JS part
$(document).ready(function(){
	$('ol:not(:first)').hide();
	$('input:checkbox.addguest').live('click', function() {
		if ($(this).is(':checked')) {
			$(this).parents('ol').next('ol').slideDown('fast').find('input:checkbox').removeAttr('checked');
		} else {
			$(this).parents('ol').nextAll('ol').slideUp("fast");
		}
	});
});
