$(document).ready(function() {
	$('label').click(function(e) {
		$(this).parents('dl').find('label').removeClass('radioSelected');
		$(this).addClass('radioSelected');
		$('input#' + $(this).attr('for')).attr('checked', 'checked');
	})
});
