window.addEvent('domready', function() {
	var hero_slider = document.getElement('.hero-wrapper');
	if(hero_slider) {
		var slideshow = new SlideShow(hero_slider, {
			transition: 'pushLeft',
			duration: 400,
			autoplay: true,
			delay: 15000,
			onShow: function() {
			},
			onShowComplete: function() {
				var img = this.nextSlide();
				if(!img.get('src')) {
					img.set('src', img.get('rel'));
				}
			}
		});
		(2).times( function(i) {
			slideshow.slides[i] && slideshow.slides[i].set('src', slideshow.slides[i].get('rel'));
		});
		
		document.getElement('.bt-hero-next').addEvent('click', function(){
			slideshow.pause().showNext().play();
		});
	}
});
