$(document).ready(function(){

$(".byson_technologies").hover(function() {

    $(this).addClass("byson_technologies_hover").stop()
      .animate({
         opacity: '1',
         width:'145px'
      }, 400)
     ;


}, function() {
    $(this).removeClass("byson_technologies_hover").stop()  
        .animate({
            opacity: 0.55,
            width:'22px'
        }, 400);
 
});

});
