// footer
$(function(){
	$('.hover-hint').mouseenter(function(){
		$(this).find('.tip').fadeIn();
	});
	$('.hover-hint').mouseleave(function(){
		$(this).find('.tip').fadeOut();
	});
});
