Cycle plugin: Synchronize pause/resume for two cycles

Cycle plugin: Synchronize pause/resume for two cycles

Hello all,
I use the following script:

  1. <script type="text/javascript">
  2.  $(document).ready(function() {
  3.        $('#EG_img').cycle({
  4.          fx: 'fade',
  5.          speed: 200,
  6.          timeout: 6000,
  7.          pause: 0,
  8.          startingSlide: 0
  9.        });
  10.       
  11.        $('#EG_info').cycle({
  12.          fx: 'fade',
  13.          speed: 200,
  14.          timeout: 6000,
  15.          pause: 0,
  16.          startingSlide: 0,
  17.        });     
  18.  });
  19. </script>

The cycle div  #EG_info is used to show images, the cycle div  #EG_info  to display their respective details like title and description.

I now want to change to "pause: 1", and my problem is obvious: Hovering the mouse over one of the cycle divs of course will only pause that one, and so the two cycles go out of synchronization.

So my question is, how to achieve a simultaneous toggling of the two cycles.

Any help is much appreciated!
ottogal