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

var customer_focus = {

	start: function(){
		if($('carousel')) customer_focus.site_carousel();
	},
	
	site_carousel: function(){
	
		new SimpleCarousel($('carousel'), $$('#carousel .slide'), $$('#carousel .button'), {
			rotateAction: 'click',
			slideInterval: 7000,
			rotateActionDuration: 700
		});
		
		$$('#carousel .button').addEvent('click', function(event){
			event.stop();
		});
		
	}
};