$(document).ready(function() {
	$('.no-js').removeClass('no-js');
	$('.fact p').hide();
	
	$('.fact').hover(function() {
		$('p', this).fadeIn();
	}, function() {
		$('p', this).fadeOut();
	});
});