$(document).ready(function() {  
   $(".refl img").mouseover(function() {
      $(this).fadeTo('slow', 0.5, function() {});
   });
   
   $(".refl img").mouseout(function() {
	   $(this).fadeTo('slow', 1, function() {});
   }); 
   $(".refr img").mouseover(function() {
      $(this).fadeTo('slow', 0.5, function() {});
   });
   
   $(".refr img").mouseout(function() {
	   $(this).fadeTo('slow', 1, function() {});
   }); 
}); 
