$(function() {
	$(".top").hover(
		function() {
			$(this).animate({
				opacity: 0.01
			});
		},
		function() {
			$(this).animate({
				opacity: 1
			});
		}
	);

});
