$(function() {
	var divList = $('div#sidebar div.people div.single');
	var nextDiv = Math.floor(Math.random() * divList.length);
	
	divList.hide();
	$(divList[nextDiv]).show();
});
