// JavaScript Document
jQuery.noConflict();

jQuery(document).ready(function(){
    initWtaForm();
});

function initWtaForm() {
  jQuery("#contour.wtaklubben .medlemstype input[type=checkbox]:last").click(function(){
    if(jQuery(this).is(':checked')){
      jQuery("#contour.wtaklubben .firma, #contour.wtaklubben .virksomhedsområde, #contour.wtaklubben .titel, #contour.wtaklubben .firmaadresse, #contour.wtaklubben .firmapostnummer").show();
    } else {
      jQuery("#contour.wtaklubben .firma input, #contour.wtaklubben .virksomhedsområde input, #contour.wtaklubben .titel input, #contour.wtaklubben .firmaadresse input, #contour.wtaklubben .firmapostnummer input").each(function(){
        jQuery(this).val("");  
      });
      jQuery("#contour.wtaklubben .firma, #contour.wtaklubben .virksomhedsområde, #contour.wtaklubben .titel, #contour.wtaklubben .firmaadresse, #contour.wtaklubben .firmapostnummer").hide();
    }
  });
}

