$moo('carouselMain').mooStore('carousel', new SimpleCarousel('carouselMain', $$moo('#carouselMain .slide'), $$moo('#carouselMain .featureButton'), {
slideInterval: 7500,
rotateAction: 'mouseenter',
onShowSlide: function(index) {
    this.buttons.mooEach(function(aButton, i) {
	if (i == index) {
	    //aButton.mooMorph({'top':-10});
	    //aButton.mooGetElement('img').mooMorph({'margin-bottom': 20});
	    aButton.mooSet('class', 'selected featureButton');
	} else {
	    //aButton.mooMorph({'top':0});
	    //aButton.mooGetElement('img').mooMorph({'margin-bottom': 0});
//	    aButton.mooSet('class', 'featureButton');
	}
    })
}
    }));
 
    window.mooAddEvent('blur', function() {
	$moo('carouselMain').mooRetrieve('carousel').stop();
    });
 
    var goToNext = function() {
	var carousel = $moo('carouselMain').mooRetrieve('carousel');
	$mooClear(carousel.slideshowInt);
	carousel.rotate('next');
    };
 
    var goToPrev = function() {
	var carousel = $moo('carouselMain').mooRetrieve('carousel');
	$mooClear(carousel.slideshowInt);
	carousel.rotate('prev');
    };
 
    var showVideo = function(videoDiv){
	var carousel = $moo('carouselMain').mooRetrieve('carousel');
	$mooClear(carousel.slideshowInt);
	carousel.showVideo(videoDiv);
    };
 
    var hideVideo = function(videoDiv){
	var carousel = $moo('carouselMain').mooRetrieve('carousel');
	$mooClear(carousel.slideshowInt);
	carousel.hideVideo(videoDiv);
    };