jQuery(document).ready(function() {
  jQuery('.randomnote').each(function(index) {
	  jQuery(jQuery('.randomnote').children()[Math.floor(Math.random()*(jQuery('.randomnote').children().length))]).show();
  });
});
