window.RokSlideshowPath = '';
window.addEvent('load', 
function()
{
  var imgs = [];
  imgs.push({file: 'slide-4.jpg', title: '', desc: '', url: '#'});
  imgs.push({file: 'slide-2.jpg', title: '', desc: '', url: '#'});
  imgs.push({file: 'slide-6.jpg', title: '', desc: '', url: '#'});
  imgs.push({file: 'slide-3.jpg', title: '', desc: '', url: '#'});
  imgs.push({file: 'slide-7.jpg', title: '', desc: '', url: '#'});
  imgs.push({file: 'slide-5.jpg', title: '', desc: '', url: '#'});
  imgs.push({file: 'slide-1.jpg', title: '', desc: '', url: '#'});
  imgs.push({file: 'slide-8.jpg', title: '', desc: '', url: '#'});
  var myshow = new Slideshow('slideshow',
					 		  {
								type: 'push', showTitleCaption: 1, captionHeight: 45, width: 306, height: 100, 
								pan: 50, zoom: 50, loadingDiv: 0, resize: true, duration: [2000, 9000], 
								transition: Fx.Transitions.Expo.easeOut, images: imgs, path: 'images/logos/'
							  }
							);
  myshow.caps.h2.setStyles({color: '#fff', fontSize: '13px'});
  myshow.caps.p.setStyles({color: '#ccc', fontSize: '11px'});
});