var mySlideShow;

window.addEvent('domready',function(){
	
	// instance with a few options
	mySlideShow = new SlideShow('header_images',{
		delay: 7000,
    duration: 3000,
		autoplay: true
	});
	
});

