// remap jQuery to $
(function($){

$("footer > section img").hover(
	function() {
		$(this).stop().animate({"opacity": "0.6"}, "slow");
	},
	function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
	});
 

})(window.jQuery);
