en mi caso le pondria a todos la clase "enlace_menu"
y a cada uno le pondria un diferent atributo data en el html
Código HTML:
Ver original<elemento data-show="barra_1"><elemento/>
Código Javascript
:
Ver original$(".enlace_menu").mouseover(function(){
$("." + $(this).attr("data-show")).show();
}).mouseout(function(){
$("." + $(this).attr("data-show")).hide();
});