


$(function(){

/*
	$(".all").click(function(){

		if($("#ln" + $(this).val()).attr('checked') == true) {
			//$(".ln" + $(this).val()).attr('checked', 'checked');
			$(".ln" + $(this).val()).removeAttr('checked');
			$(".ln" + $(this).val()).attr("disabled", "disabled");
		} else {
			//$(".ln" + $(this).val()).removeAttr('checked');
			$(".ln" + $(this).val()).removeAttr("disabled");
		}

		if($("#ad" + $(this).val()).attr('checked') == true) {
			$(".ad" + $(this).val()).removeAttr('checked');
			$(".ad" + $(this).val()).attr("disabled", "disabled");
		} else {
			$(".ad" + $(this).val()).removeAttr("disabled");
		}

	});
*/

	$("input.g").change(function(){
		var clickedClass = "." + $(this).attr('name');
		if($(this).attr('checked') == true){
			$(clickedClass).each(function(){$(this).attr("checked",true);
			});
		}else{
			$(clickedClass).each(function(){$(this).attr("checked",false);
			});
		}
		return false;
	});

});

