$('.footer-hover').hover(function(){
	
		$(this).children('.footer-hover-desc').show();
	
	},
	function(){
		
		$(this).children('.footer-hover-desc').hide();
		
});
