$(function() {
	$("#filterText").keyup(function() {
		$(".filterable").each(function() {
			if ($(this).html().toLowerCase().match($("#filterText").val().toLowerCase()) != null) {
				$(this).parent().show();
			} else {
				$(this).parent().hide();
			}
		});
	}).focus();
	$("#clearFilter").click(function() {
		$(".filterable").parent().show();
		$("#filterText").val("");
		return false;
	});
});