
function tableFilter( value ) {

	rows = $('.normalrow, .normalrow2');
	rows.each( function(i) {
	found=0;
	$( this ).children().each( function(i) {
		t=$( this ).text();
		if (value!='' && t.search( value )!=-1) {
			$( this ).addClass('highlight');
			found=1;
		}else{
			$( this ).removeClass('highlight');
		}
		});
		if (value=='' || found) {
			$( this ).removeClass("hide");
		}else{
			$( this ).addClass("hide");
		}
	});

}



