オプションの配列があります:
var options = ["foo_A", "foo_B", "foo_C", "foo_D"];
...そして、ユーザーが次の要素のいずれかをクリックすると...
<div id="bar_A"> </div>
<div id="bar_B"> </div>
<div id="bar_C"> </div>
<div id="bar_D"> </div>
...次の変数を設定します。
var currentBar = $(this).attr('id');
...次に、options 配列を検索して、currentBar のサフィックスと一致するサフィックスを持つアイテムを見つけたいと思います。次のようなものです。
$.each(options, function(i,v){
if (v's suffix matches the currentBar's suffix){
//function to do something
}