- $($('iframe').contents()).scroll(function() {
- var percentScrolled = $('body', this).scrollTop() / $('body', this).height();
- $('#images-wrap').scrollTop(percentScrolled * $('#images').height());
- });
-
+ $('#images').autoscroll('iframe');
+ $('.toggleAutoscroll').toggle(function() {
+ $(this).html('Synchronizuj przewijanie');
+ $('#images').disableAutoscroll();
+ }, function() {
+ $(this).html('Nie synchronizuj przewijania');
+ $('#images').enableAutoscroll();
+ })