$(document).ready(function(){
	$('.random').children().hide();
	var number = Math.floor((5)*Math.random()) + 1;
	$('.random li:nth-child('+number+')').show();
});