window.addEvent('domready', function(){

  var images = []
  $$('div.imgs img').each(function(img) {
    images.push(img.src);
  });

  var myShow = new Slideshow.KenBurns('show', images, { captions: false, controller: false, delay: 5000, duration: 2000, height: 200, width: 700 });
});
