// changes label of radio buttons to bold if checked
// extended search page
var chkRBstatus = function(){
	$('.ToggleRadioButton').each(function(){
		if ($('input', $(this)).attr('checked')) {
			$('label', $(this)).css({'font-weight':'bold'});
		} else {
			$('label', $(this)).css({'font-weight':'normal'});
		}
	});
};

$(function(){
	chkRBstatus();
});