$(document).ready(function(){ 
$(".flickr_badge_image img").fadeTo("slow", 0.3); 
$(".flickr_badge_image img").hover(function(){ 
$(this).fadeTo("slow", 1.0); 
},function(){ 
$(this).fadeTo("slow", 0.3); 
}); 
});