$(".update").click(function() {
if ($("#top").val('notop')) {
$('input[name="top"]').attr('checked', false);
} else {
$('input[name="top"]').attr('checked', true);
}
});
$('.update').click(function() {
$('input[name="top"]').prop('checked', $('#top').val() !== 'notop');
});