/* *  Slick Carousel - an extension of Carousel * *  Carousel is freely distributable under the terms of an MIT-style license. *  Please visit http://code.google.com/p/mookit/ for more details./*--------------------------------------------------------------------------*/var SlickCarousel = eolSlideCarousel.extend({        goto: function(index) {				//alert("test");                var prev = this.activeindex;                this.menu[prev].removeClass('active');                this.menu[prev].addClass('inactive');                                this.menu[index].removeClass('inactive');                this.menu[index].addClass('active');                                                                this.parent(index);        }  // end goto()}); // end SlickCarousel
