$(document).ready(function(){ 
    $('.sub_menu_content a').hover(
      function () {
        title = (this['title']);
        $(this).removeAttr('title');
        if (title) $('.sub_menu_tooltip').html(title);
      }, 
      function () {
        $('.sub_menu_tooltip').html('&nbsp;');
        $(this).attr('title', title);
      }
    );
});
