var $j = jQuery.noConflict();

$j(document).ready(function() {
  $j('.banners img').hover(
    function() {
      $j(this).css('opacity', '.9');},
    function() {
      $j(this).css('opacity', '1');}
  );
  
});
