Oh, wait, there's a conflict when clicking on the .label-clickable elements. Try this:
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('#question{QID} input.radio').click(function() {
checkconditions($(this).attr('value'), $(this).attr('name'), $(this).attr('type'));
$('#movenextbtn, #movesubmitbtn').trigger('click');
});
$('#question{QID} .label-clickable').unbind();
$('#question{QID} .label-clickable').click(function() {
$('#question{QID} input.radio').unbind();
var input = $(this).parent().find('input.radio');
$(input).trigger('click');
checkconditions($(input).attr('value'), $(input).attr('name'), $(input).attr('type'));
$('#movenextbtn, #movesubmitbtn').trigger('click');
});
});
</script>