this.randomtip = function(){
	var length = $("#facts li").length;
	var ran = Math.floor(Math.random()*length) + 1;
	$("#facts li:nth-child(" + ran + ")").show();
};

$(document).ready(function(){	
	randomtip();
});