    window.RokSlideshowPath = '';
    window.addEvent('load', function(){
      var imgs = [
      {
        file: '1.jpg',
        title: '',
        desc: '2009 Times Square Collection',
        url: 'http://www.karenmcclintock.com/collections2009/times/index.html'
      },{ 
	      file: '2.jpg',
         title: '',
	 	 desc: '2009 - Out of Africa Collection',
	     url: 'http://www.karenmcclintock.com/collections2009/africa/index.html'
	     },{ 
	      file: '3.jpg',
         title: '',
	 	 desc: '2009 - Jones Beach Collection',
	     url: 'http://www.karenmcclintock.com/collections2009/jones/index.html'
	     }]; 
	    
      var myshow = new Slideshow ('slideshow', { 
        type: 'combo',
        showTitleCaption: 0,
        captionHeight: 20,
        width: 273, 
        height: 200, 
        pan: 20,
        zoom: 30,
        loadingDiv: 0,
        resize: true,
        duration: [2000, 9000],
        transition: Fx.Transitions.Expo.easeOut,
        images: imgs, 
        path: '../../slideshow/collection2009/show2009/'
      });
 
      myshow.caps.h2.setStyles({
        color: '#fff',
        fontSize: '13px'
      });
      myshow.caps.p.setStyles({
        color: '#ccc',
        fontSize: '11px'
      });
    });