$(function() {
    $('a#fm_tab').hover(function(){
           $(this).addClass('over');
    }, function() {
           $(this).removeClass('over');
    });
});


