/*
 * Familienmitglieder
 */

		$(document).ready(function()
		{
			$(".profile_settings_show_j").click(function()				
			{
			//$('.adult_settings_profile_showbm').is(':checked'); 
			//$('#adult_settings_profile_showbm').attr('checked');
				//alert("y");
				$('input[name=adult_settings_profile_showbm]').attr('checked', true);
				$('input[name=adult_settings_profile_showcontact]').attr('checked', true);
				$('input[name=adult_settings_profile_showgroup]').attr('checked', true);
			});		

			
			$(".profile_settings_show").click(function()				
			{

				$('input[name=adult_settings_profile_showbm]').attr('checked', false);
				$('input[name=adult_settings_profile_showcontact]').attr('checked', false);
				$('input[name=adult_settings_profile_showgroup]').attr('checked', false);
			//$('#adult_settings_profile_showbm').attr('checked');
				//alert("n");
			});	
		});
