This is currently working, for the most part:
$(".nextproject").click(function() {
$(window).scrollTo(
$(this)
.parents()
.nextAll()
.find("li:visible:first"),
1000,
{easing:'easeOutExpo', axis:'x', offset:-75 }
);
});
You can see the demo here: http://www.studioimbrue.com/index2.php
It works fine through the whole thing. When you click the filters at the bottom, it still functions and skips the hidden divs. Once you get to the end, right before the #about div, it doesn't continue going, and I have no clue why it won't.
Edit: I changed the div elements to li elements. Still isn't working properly; it gets to the last one of the list and won't go any further. This doesn't make any sense at all.