$(function() {
   $(".colorbox").colorbox();
   $(".youtube").colorbox({iframe:true, innerWidth:425, innerHeight:344});
   
   $(".hide").hide();
   $("a.reageren").show();
    
   $("a.reactie").click(function(){
      var item =  $(this).parent().next().next();
      if(item.is(':visible')){
         item.hide();
      }else{
         item.show();
      }
   });
   
			
   $("#is_cadeau").click(function(){
      if ($("#is_cadeau").is(":checked")){
         $("li#email_cadeau").show();
      }else{
         $("li#email_cadeau").hide();
      }
   });
   
   $("input[name='form_machtiging_nota']").click(function(){
      if($("input[name='form_machtiging_nota']:checked").val() == "machtiging"){
         $("li.rekeningnummer").show();
      }else{
         $("li.rekeningnummer").hide();
      }
   });
});
