$(document).ready(
   function() {
      $('#slides').cycle({
         // options: fx, speed, pause, timeout, random
         //fx: 'fade',
         fx: 'turnLeft',
         speed: 2000,
         next: '#slides',
         pause: 1,
         //random: 1,
         timeout: 7000
      });
      $('.comments').cycle({
         // options: fx, speed, pause, timeout, random
         fx: 'slideY',
         speed: 1000,
         next: '.comments',
         //pause: 1,
         timeout: 13000,
         random: 1
      });
   }
);

