$(document).ready(function() {
	// hides all divs as soon as the DOM is ready
	// (a little sooner than page load)
	$('#common').hide();
	$('#metkaft').hide();
	$('#common2').hide();
	$('#common3').hide();
	$('#brochures').hide();
	$('#brochureskaft').hide();
 
	// when clicking first 7 btns
	$('input.type1').click(function(showhidecommon) {
		$('div#brochures').hide();
		$('div#brochureskaft').hide();
		$('#metkaft').hide();
		$('input#cbmetkaft').removeAttr("checked");
		$('div#common').show('slow');
		$('div#common2').show('slow');
		$('div#common3').show('slow');
	});

	$('input#rbkaarten').click(function() {
		$('#typedrukwerk ul li').removeClass("type3");
		$('.type01').addClass("type3");
	});
  
	$('input#rbaffiches').click(function() {
		$('#typedrukwerk ul li').removeClass("type3");
		$('.type02').addClass("type3");
	});
  
	$('input#rbbrieven').click(function() {
		$('#typedrukwerk ul li').removeClass("type3");
		$('.type03').addClass("type3");
	});
  
	$('input#rbetiketten').click(function() {
		$('#typedrukwerk ul li').removeClass("type3");
		$('.type04').addClass("type3");
	});
  
	$('input#rbfolders').click(function() {
		$('#typedrukwerk ul li').removeClass("type3");
		$('.type05').addClass("type3");
	});
  
	$('input#rbomslagen').click(function() {
		$('#typedrukwerk ul li').removeClass("type3");
		$('.type06').addClass("type3");
	});
  
	$('input#rbfardes').click(function() {
		$('#typedrukwerk ul li').removeClass("type3");
		$('.type07').addClass("type3");
	});
  
	$('input#rbandertype').click(function() {
		$('#typedrukwerk ul li').removeClass("type3");
		$('.type09').addClass("type3");
	});
  
	// when clicking btn brochures 
	$('input#rbbrochures').click(function() {
		$('#aantalpagbro').focus();
		$('#typedrukwerk ul li').removeClass("type3");
		$('.type2').addClass("type3");
		$('div#common2').hide();
		$('div#common').show('slow');
		$('div#brochures').show('slow');
		$('#metkaft').show('slow');
		$('div#common3').show('slow');
	});
  
	// when clicking on input field aantalpagbro
	$('input#aantalpagbro').click(function() {
		$('input#rbbrochures').attr("checked","checked");
		$('#typedrukwerk ul li').removeClass("type3");
		$('.type2').addClass("type3");
		$('#metkaft').show('slow');
		$('div#common2').hide();
		$('div#common').show('slow');
		$('div#brochures').show('slow');
		$('div#common3').show('slow');
	});
  
	// when metkaft is checked
	$('input#cbmetkaft:checked').click(function() {
		$('div#brochureskaft').hide('slow');
	});

	// when metkaft is unchecked
	$('input#cbmetkaft').click(function() {
		$('div#brochureskaft').show('slow');
	});

	// when clicking btn rbandertype 
	$('input#rbandertype').click(function() {
		$('input#andertype').focus();
		$('#typedrukwerk ul li').removeClass("type3");
		$('.type09').addClass("type3");
		$('div#brochures').hide();
		$('div#brochureskaft').hide();
		$('#metkaft').hide();
		$('div#common').show('slow');
		$('div#common2').show('slow');
		$('div#common3').show('slow');
	});
  
	// when clicking input field andertype
	$('input#andertype').click(function() {
		$('input#rbandertype').attr("checked","checked");
		$('input#cbmetkaft').removeAttr("checked");
		$('#typedrukwerk ul li').removeClass("type3");
		$('.type09').addClass("type3");
		$('div#brochures').hide();
		$('div#brochureskaft').hide();
		$('#metkaft').hide();
		$('div#common').show('slow');
		$('div#common2').show('slow');
		$('div#common3').show('slow');
	});
  
	// when clicking input field aantalversies
	$('input#aantalversies').click(function() {
		$('input#rbaantalversies').attr("checked","checked");
	});
  
	// when clicking input field wisselandere
	$('input#wisselandere').click(function() {
		$('input#rbwisselandere').attr("checked","checked");
	});
  
	// when clicking input field afwerkandere
	$('input#afwerkandere').click(function() {
		$('input#cbafwerkandere').attr("checked","checked");
	});
  
	// when clicking input field anderftopen
	$('input#anderftopen').click(function() {
		$('input#rbftopenander').attr("checked","checked");
	});
  
	// when clicking input field anderftopen2
	$('input#anderftopen2').click(function() {
		$('input#rbftopenander').attr("checked","checked");
	});
  
	// when clicking input field anderftgesl
	$('input#anderftgesl').click(function() {
		$('input#rbftgeslander').attr("checked","checked");
	});
  
	// when clicking input field anderftgesl2
	$('input#anderftgesl2').click(function() {
		$('input#rbftgeslander').attr("checked","checked");
	});
  
	// when clicking input field papandere
	$('input#papandere').click(function() {
		$('input#rbpapandere').attr("checked","checked");
	});
  
	// when clicking input field brochpapandere
	$('input#brochpapandere').click(function() {
		$('input#rbbrochpapandere').attr("checked","checked");
	});
  
	// when clicking input field brochafwerkandere
	$('input#brochafwerkandere').click(function() {
		$('input#cbbrochafwerkandere').attr("checked","checked");
	});
  
	// when clicking input field kaftpapandere
	$('input#kaftpapandere').click(function() {
		$('input#rbkaftpapandere').attr("checked","checked");
	});
  
	// when clicking input field AdresAndere
	$('input#AdresAndere').click(function() {
		$('input#rbAdresAndere').attr("checked","checked");
	});
  
});
