tenebrosus,
ох уж эта верстальщица, где она только не работает везде успевает )))
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(function ()
{
var $unique = $('input.unique');
$unique.click(function() {
$unique.not(this).prop({'checked': false});
$(this).prop({'checked': true});
});
})
</script>
</head>
<body>
<div class="check">
<input class="unique" type="checkbox" id="female" checked="checked" />
<label class="check" for="female"><img src="http://javascript.ru/forum/images/smilies/cray.gif" /></label>
<input class="unique"type="checkbox" id="male" />
<label class="check" for="male"><img src="http://javascript.ru/forum/images/smilies/cray.gif" /></label>
</div>
</body>
</html>