

  $(document).ready(function() {        
    
    $('#images').carousel({
      hide: 'fadeOut', // jquery show / hide effect method name
      show: 'fadeIn', // jquery show / hide effect method name
      duration: 3000, // duration of wait in milliseconds
      speed: 1000, // 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.
    });
	
	$('#mod_images').carousel({
      hide: 'fadeOut', // jquery show / hide effect method name
      show: 'fadeIn', // jquery show / hide effect method name
      duration: 3100, // duration of wait in milliseconds
      speed: 1000, // 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.
    });
  });