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