$(function(){
	/**
	 * Serie bestel formulier
	 * jquery 1.2.3
	 * @author: arjen
	 * 
	 */
	// slide serie options 
	$('form fieldset.checkMoreOptions .wrap:not("span.wrap")').hide();
	$('form .checkMoreOptions legend input[type="checkbox"]').click(function(){
		if ((this.checked)) {
			console.log($(this).parents('.checkMoreOptions'));
			$(this).parents('.checkMoreOptions:eq(0)').children('.wrap:eq(0)').slideDown();
		}
		else {
			// uncheck any descendent checkboxes
			$(this).parents('.checkMoreOptions:eq(0)').find('input[type="checkbox"]').each(function(){
				this.checked = false;
			});
			// set any descendent select to 0
			$(this).parents('.checkMoreOptions:eq(0)').find('select').each(function(){
				this.value = 0;
			});
			
			$(this).parents('.checkMoreOptions:eq(0)').find('.wrap:eq(0)').slideUp();
		}
	});
	
	
	// open checked items
	$('form .checkMoreOptions legend input[type="checkbox"]:checked').each(function(){
		$(this).parents('.checkMoreOptions:eq(0)').find('.wrap:eq(0)').slideDown();
	});
});
