$(function(){
	$('footer ul img').css("opacity","0.5");
	
	$('footer ul img').mouseenter(function(){
			$(this).stop().animate({
				opacity:1
			},200, function(){
	$('footer ul img').mouseleave(function(){
	$(this).stop().animate({
				opacity:0.5
			},200)
			});
		});
	});
});

