$(function() {
 var randomNum = Math.floor(Math.random()*5);
$('div#facts div:eq(' + randomNum + ')').css("display", "block");
});
