window.addEvent('domready', function() {
	USGsite.start();
});

var USGsite = {

	start: function(){
		if($('slideshow')) USGsite.slideshow();
	},
		
	slideshow: function(){
		new SimpleCarousel($('slideshow'), $$('#slideshow .slide'), $$('#slideshow .slide'), {
			slideInterval: 7000,
			rotateActionDuration: 700
		});
		
	}
		
};
