jQuery(document).ready(function(){
	jQuery(".a").hover(
	function() {
		jQuery (this).animate({"opacity": "0"}, "slow");
	},
	function() {
		jQuery (this).animate({"opacity": "1"}, "slow");
	});
});
