$(function() {
	$(".tbl tr").css("background", "#ffffff").filter(".tbl tr:visible:even").css("background", "#f5f5f5");
});
$(document).ready(function(){
	$(':checkbox').click(function(){
		$("." + this.value).toggle();
		$(".tbl tr").css("background", "#ffffff").filter(".tbl tr:visible:even").css("background", "#f5f5f5");
	});
});
