$(document).ready(function(){
  $('.rightBox_bottom img').hover(function() {
    $(this).css({'opacity' : '0.8'});
  },function() {
    $(this).css({'opacity' : '1.0'});
  });
});