function doFilter (clickedChar){
 $('#songs tbody tr td:last-child').each(function(i){
 var innerText = $(this).text();
 var geKlickt = String(clickedChar);
if(innerText.charAt(0)==geKlickt){
 $(this).parent().css('display', 'table-row');
  }else if(geKlickt==""){
 $(this).parent().css('display', 'table-row');
}else{
 $(this).parent().css('display', 'none'); 
};
});
};

function doFilter1 (clickedChar){
 $('#songs tbody tr td:first-child').each(function(i){
 var innerText = $(this).text();
 var geKlickt = String(clickedChar);
if(innerText.charAt(0)==geKlickt){
 $(this).parent().css('display', 'table-row');
  }else if(geKlickt==""){
 $(this).parent().css('display', 'table-row');
}else{
 $(this).parent().css('display', 'none'); 
};
});
};



