jQuery(document).ready(function() {
        
            jQuery('.breadImages img').hover(function() {
                jQuery(this).stop().animate({ opacity: 0.3}, 40);
            },
           function() {
               jQuery(this).stop().animate({ opacity: 1.0}, 40);
           });
        
    });
