$(document).ready(function() {
	$('#accesstype0').change(function() {
		if($('#accesstype0').val() == 0){
			$("#MemberTypes option:selected").removeAttr("selected");
			$("#SecurityGroups option:selected").removeAttr("selected");
		}
		$('#accesstype1').removeAttr("checked");
	});	
	$('#MemberTypes').click(function() {
		if(isSelected('MemberTypes')) {
			$('#accesstype1').attr("checked","checked");
			$('#accesstype0').removeAttr("checked");
		}
	});
	$('#SecurityGroups').click(function() {
		if(isSelected('SecurityGroups')) {
			$('#accesstype1').attr("checked","checked");
			$('#accesstype0').removeAttr("checked");
		}
	});	
	if(isSelected('MemberTypes') || isSelected('SecurityGroups')) {
		$('#accesstype1').attr("checked");
		$('#accesstype0').removeAttr("checked");
	}
});

isSelected = function(id) {
	var f = false;
	$("#" + id + " option:selected").each(function () {
		if($(this).attr("selected") == 'selected') {
			f = true;
		}
	});return f;
}
