 $(document).ready(function(){
 

    
 /**** this fades gallery images *********/
 
 
 
 $(".uncle").fadeTo(1, 0.5);
  $(".uncle").hover(
    function () {
      $(this).fadeTo("fast", 1);
    },
    function () {
      $(this).fadeTo("normal", 0.5);
    }
  );



  
});
    

 
