$(document).ready(function(){
	$("INPUT.label_highlight").bind("click",function(){
		if (this.checked)
			$("label[for='"+this.id+"']").addClass("bold");
			else
			$("label[for='"+this.id+"']").removeClass("bold");
	});
});