function set_labels(){ 
	$('input[title!=""]').hint();
}
$('input[type=checkbox]').click(function(){
	if($(this).is(':checked')) $(this).attr('checked',false);
	else $(this).attr('checked',true);
})
