$(document).ready(function(){

		$("#footerSpike").hover(function(){
				$("#footerSpikeText").animate({"opacity": "1"},{queue:false, duration:500}); // This should set the opacity to 100% on hover
			},function(){
				$("#footerSpikeText").animate({"opacity": "0"},{queue:false, duration:500}); // This should set the opacity back to 60% on mouseout
			});	
	
		$("#footerMod").hover(function(){
			$("#footerModText").animate({"opacity": "1"},{queue:false, duration:500}); // This should set the opacity to 100% on hover
	},function(){
			$("#footerModText").animate({"opacity": "0"},{queue:false, duration:500}); // This should set the opacity back to 60% on mouseout
	});
	
		$("#footerWell").hover(function(){
			$("#footerWellText").animate({"opacity": "1"},{queue:false, duration:500}); // This should set the opacity to 100% on hover
	},function(){
			$("#footerWellText").animate({"opacity": "0"},{queue:false, duration:500}); // This should set the opacity back to 60% on mouseout
	});
	
		$("#footerInsight").hover(function(){
			$("#footerInsightText").animate({"opacity": "1"},{queue:false, duration:500}); // This should set the opacity to 100% on hover
	},function(){
			$("#footerInsightText").animate({"opacity": "0"},{queue:false, duration:500}); // This should set the opacity back to 60% on mouseout
	});
	

});
