$(function(){
    $('.go-to-next').live('click', function() {
      var el = $(this).parents('.browsing-element');
      var nextGoTo = el.next('.browsing-element').find('.go-to-next:visible');
      var distance;
      if (nextGoTo.size() > 0) {
        distance = nextGoTo.offset().top - $(this).offset().top;
        $(window).scrollTo("+=" + distance + "px", 400);
      } else {
        $('#more-designs-link').trigger('click');
      }
      return false;
    });
});
