$(document).ready(function(){
	$('#personal_area_register .field_date').datepicker({dateFormat: 'dd.mm.yy'}, $.extend($.datepicker.regional['ru']));	
	
	$("#telephon, #telefax").mask("9 (999) 999-9999");
	$("#birth_date, #doc_date,  #document_date").mask("99.99.9999");	
	$("#doc_code_podr").mask("999-999");
	$('#fact .hidden_wrapper').slideUp(200);
	$('#pasp_equal').click(function(){
		if (!$(this).hasClass('active_checkbox')){
			$('#fact .hidden_wrapper').slideDown(200);
			$(this).addClass('active_checkbox');
		}
		else {
			$('#fact .hidden_wrapper').slideUp(200);
			$(this).removeClass('active_checkbox');
		}
	});

	$('#bad_counts_info').keypress(function(){
		$('#bad_counts').attr('checked', '');
	});
});