$("#tag_well .tag").hover(function() {
  if ($(this).attr('id').split('-')[2] != 'selected') {
    $(this).addClass('label-info');
  }
}, function() {