$(document).ready(function() {        
    $('#titles').carousel({
      duration: 1000,
      speed: 2000,
      slideshow: false, // slideshow and animate can either be both true, 
      animate: false   // both false, or slideshow = true, animate = false.
                       // animate = true, slideshow = false does nothing.
    });
    
    $('#images').carousel({
      hide: 'fadeOut', // jquery show / hide effect method name
      show: 'fadeIn', // jquery show / hide effect method name
      duration: 6000, // duration of wait in milliseconds
      speed: 2500, // speed in milliseconds, 'slow' or 'fast',
      seed: 5 // length of random classname applied to item to keep things all nice and seperate
              // warning: setting this to something ridiculous will make it take ages to load.
    });
  });


