window.addEvent('load', function() {
	var imgs = [];
	imgs.push({file: 'slide1.jpg', title: '', desc: '', url: ''});
	imgs.push({file: 'slide10.jpg', title: '', desc: '', url: ''});
	imgs.push({file: 'slide11.jpg', title: '', desc: '', url: ''});
	imgs.push({file: 'slide12.jpg', title: '', desc: '', url: ''});
	imgs.push({file: 'slide2.jpg', title: '', desc: '', url: ''});
	imgs.push({file: 'slide3.jpg', title: '', desc: '', url: ''});
	imgs.push({file: 'slide4.jpg', title: '', desc: '', url: ''});
	imgs.push({file: 'slide5.jpg', title: '', desc: '', url: ''});
	imgs.push({file: 'slide6.jpg', title: '', desc: '', url: ''});
	imgs.push({file: 'slide7.jpg', title: '', desc: '', url: ''});
	imgs.push({file: 'slide8.jpg', title: '', desc: '', url: ''});
	imgs.push({file: 'slide9.jpg', title: '', desc: '', url: ''});
	var myshow = new Slideshow('slideshow', { 
		type: 'fade',
		externals: 0,
		showTitleCaption: 0,
		captionHeight: 45,
		width: 780, 
		height: 173, 
		pan: 50,
		zoom: 50,
		loadingDiv: 1,
		resize: true,
		duration: [2000, 5000],
		transition: Fx.Transitions.Expo.easeOut,
		images: imgs, 
		path: 'images/slide/'
	});
 
	myshow.caps.h2.setStyles({color: '#fff', fontSize: '13px'});
	myshow.caps.p.setStyles({color: '#ccc', fontSize: '11px'});
});