<input id="a" type="checkbox"/>
<input id="b" type="checkbox"/>
<script>
$('#a').click(function(){
$(this).attr('checked','checked');
$('#b').removeAttr('checked');
})
$('#b').click(function(){
$(this).attr('checked','checked');
$('#a').removeAttr('checked');
})
</script>