// hahaha

$(document).ready(function() {
  	$('#yo').hide();
	$('#top').click( function() {
	 $('#yo').toggle(400);
	});
});

$(function() {

	$('ol#content').infinitescroll({
        navSelector: "div#paging",
        nextSelector: "a.backward",
        itemSelector: "ol#content li",
        loadingText: " ",
        donetext: "You're at the end. Thanks for playing.",
    });

});
