
        jQuery(function($) {
            $('.flickr_badge_image img').animate({ opacity: 0.5}, 0) ;
			$('.flickr_badge_image img').each(function() {
                $(this).hover(
                    function() {
                        $(this).stop().animate({ opacity: 1.0 }, 200);
                    },
                   function() {
                       $(this).stop().animate({ opacity: 0.5 }, 200);
                   })
                });
        });	
		
        jQuery(function($) {
            $('.block .flickr_badge_image img').animate({ opacity: 0.7}, 0) ;
			$('.block .flickr_badge_image img').each(function() {
                $(this).hover(
                    function() {
                        $(this).stop().animate({ opacity: 1.0 }, 200);
                    },
                   function() {
                       $(this).stop().animate({ opacity: 0.7 }, 200);
                   })
                });
        });
		


