/*
Licencja na użytek prywatny i komercyjny. Wymaga pozostawiania poniższych danych o autorze i pochodzeniu skryptu.
Autor: Labsta.com Laboratorium Designu
Skrypt pochodzi ze strony http://websta.pl - Blog o grafice i projektowaniu stron
*/

(function($) {
	
	$.fn.ukryjpola = function(options) {
		
		var defaults = {
			szybkoscpokaz : 'slow',
			szybkoscukryj : 'fast'
		},
		
		settings = $.extend({}, defaults, options); 
		if($(this).is(':checked')) {
			$('#'+settings.docelowy+'').show().children('p').children('input, select').removeAttr('disabled');
		}else{
			$('#'+settings.docelowy+'').hide().children('p').children('input, select').attr('disabled','disabled');
		}
		
		function aktywatorCheckbox() {
			if ($(this).is(':checked')) {
				$('#'+settings.docelowy+'').slideDown(settings.szybkoscpokaz)
				.children('p').children('input, select').removeAttr('disabled');
			} else {
				$('#'+settings.docelowy+'').slideUp(settings.szybkoscukryj)
				.children('p').children('input, select').attr('disabled','disabled');
			}
		}
		
		function aktywatorRadio() {
			if ($('#'+aktyw+'').is(':checked')) {
				$('#'+settings.docelowy+'').slideDown(settings.szybkoscpokaz);
			} else {
				$('#'+settings.docelowy+'').slideUp(settings.szybkoscukryj);
			}
		}
		
		if ($(this).is("input[type='checkbox']")) {
			$(this).click(aktywatorCheckbox);
		}else if ($(this).is("input[type='radio']")){
			var grupa = $(this).attr("name");
			var aktyw = $(this).attr("id") 
			$("input[name='"+grupa+"']").click(aktywatorRadio);
		}
				$("#re_typ_konta").change(function () {
          var $typ = $("select option:selected").attr('value');
		  switch($typ){

			case '1':
				$('#re_zawodnik').slideUp().children('p').children('input, select').attr('disabled','disabled');
				 $('#zawodnik_zrzeszony_div').children('p').children('input, select').attr('disabled','disabled');
				$('#re_klub').slideUp().children('p').children('input, select').attr('disabled','disabled');
					$('#re_klub_zrzeszony_div').children('p').children('input, select').attr('disabled','disabled');
				break;
			case '5':
				$('#re_zawodnik').slideDown().children('p').children('input, select').removeAttr('disabled');
				if($('#re_zawodnik_zrzeszony').attr('checked')){
					$('#zawodnik_zrzeszony_div').children('p').children('input, select').removeAttr('disabled');
				}
				$('#re_klub').slideUp().children('p').children('input, select').attr('disabled','disabled');
					$('#re_klub_zrzeszony_div').children('p').children('input, select').attr('disabled','disabled');
				break;
			case '4':
				$('#re_klub').slideDown().children('p').children('input, select').removeAttr('disabled');
				 $('#zawodnik_zrzeszony_div').children('p').children('input, select').attr('disabled','disabled');
				$('#re_zawodnik').slideUp().children('p').children('input, select').attr('disabled','disabled');
				if($('#re_klub_zrzeszony_div').attr('checked')){
					$('#re_klub_zrzeszony_div').children('p').children('input, select').removeAttr('disabled');
				}
				break;

		  }
        }).trigger('change');			
		
	} 
	
})(jQuery);


