$(document).ready(function(){
    $("span[hover]").each(function() {

        $(this).mouseover(function(){
            $(this).addClass('hover');
        })

        $(this).mouseout(function(){
            $(this).removeClass('hover');
            
        })
    })

})