
$(document).ready(function() {
	// bind click handler to the radio buttons
	$('input[name="tcRadio"]').click(function() {
		if($(this).val() == 1) {
			$('.tcError').css('visibility', 'hidden');
			
			$('#tabTc', top.document).removeClass('active');
			$('#tabPer', top.document).addClass('active');
			
			$('#personal', top.document).css('display', 'block');
			$('#terms', top.document).css('display', 'none');
		}
		else {
			$('.tcError').css('visibility', 'visible');
		}
	});
});