$(document).ready(function(){
 
$("img.a, img.c, img.e, img.g, img.i, img.j").hover(
function() {
$(this).animate({"opacity": "0"}, "medium");
},
function() {
$(this).animate({"opacity": "1"}, "medium");
});
 
});