$(document).ready(function() {
	$(".footer .fadehoverinitial").hover(function() {
		$(this).stop().animate({"opacity": "0"}, "slow");
	},
	function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
	});
	
	$(".item").hover(function() {
		$(this).children(0).children(".fadehoverinitial").stop().animate({"opacity": "0"}, "fast");
	},
	function() {
		$(this).children(0).children(".fadehoverinitial").stop().animate({"opacity": "1"}, "slow");
	});
});
