$(document).ready(function(){
	$("input[@name='faktura']").click(
		function() {
			if ($("input[@name='faktura']").is(":checked")) {
				$("#faktura_dane").show("slow");
				$("#faktura_dane input").each(function(i){
					$(this).addClass("required");
				});
			} else {
				$("#faktura_dane").hide("slow");
				$("#faktura_dane input").each(function(i){
					$(this).removeClass("required");
				});
			}
			$(this).blur();
			
			

		}
	);
	
	$(window).load(function () {
		if ($("input[@name='faktura']").is(":checked")) {
			$("#faktura_dane").removeClass('hidden');
			$("#faktura_dane input").each(function(i){
				$(this).addClass('required');
			});
		}
    });

	$.metadata.setType("attr", "validate");
	
	// validate signup form on keyup and submit
	$("#register").validate({
		rules: {
			email: {
				required: true,
				email: true
			},
			email2: {
				equalTo: "#email"
			}
		}
	});

});

