Edit this page to edit javascript.
$(document).ready(function(){
$("#menutest").hide();
});
$(window).scroll(function() { if($(window).scrollTop() + $(window).height() == $(document).height()) { $("#menutest").fadeIn("slow"); }