$(function() {
	$('table#teams tr td').click(function(e) {
		$(this).removeClass('selected');
		var j_checkbox = $('input[type=checkbox]', this);
		if (!$(e.target).is('input[type=checkbox]')) j_checkbox.get(0).checked = !j_checkbox.get(0).checked;
		if (j_checkbox.get(0).checked) $(this).addClass('selected');
	});
});

