var CarouselCustomizer;if(CarouselCustomizer==undefined)CarouselCustomizer=function(carousel,options){var defaults={wrapperSelector:"",listItemsSelector:""};this.carousel=carousel;this.options=$.extend({},defaults,options||{});this.init()};$(document).ready(function(){CarouselCustomizer.prototype.extend=$.extend;CarouselCustomizer.prototype.extend({init:function(){},removeWrapDiv:function(){var wrapDiv=$(this.options.wrapperSelector),child=wrapDiv.children();wrapDiv.replaceWith(child)},alignDimensions:function(){var list=this.carousel.list;list.find("li.jcarousel-item").each(function(){var li=$(this),divHeight=jQuery(li.find("div.compareitems").get(0)).outerHeight();li.height(divHeight);var ul=jQuery(li.parent().get(0)),ulHeight=ul.height();ulHeight<divHeight&&ul.height(divHeight)});var clip=this.carousel.clip;clip.height(list.outerHeight());var container=this.carousel.container;container.height(clip.outerHeight())}})});
