jQuery(document).ready(function() {
  jQuery('#jcarousel3').jcarousel({
    scroll:3,
    vertical:false
  });
});

//this waits until all images loaded before displaying jcarousel strip
$(window).load(function() {
  $('#jcarousel3 img.imagecache').show().fadeIn('slow');
});