// JavaScript Document
$(document).ready(function(){

$("img.a").hover(
function() {
$(this).animate({"opacity": "0"}, "medium");
},
function() {
$(this).animate({"opacity": "1"}, "medium");
});

});