The belt divisions can apparently be accessed directly via jQuery and their left or top css obtained or set. For the the vertical one:
Code:
$('.belt').css('top')
will get you the position and:
Code:
$('.belt').css('top', '-120px')
will set it.
It's similar for the horizontal one, only you use 'left' instead of 'top' in the above examples. If you have more than one scrollable feature on the page, you need to specify which one you want. They are indexed from 0 to however many there are, so to get the second one, if it's horizontal, you would do:
Code:
$('.belt').eq(1).css('left')
Bookmarks