jQuery Cycle - double contense

jQuery Cycle - double contense

I get double contense dunno why actualy. www.bznreview.com/beta/ it just the first slide thats bugged.

  1.    <!-- slider initialization goes here -->
  2.     <script type="text/javascript">
  3.     $slider = {
  4.     context: false,
  5.     tabs: false,
  6.     timeout: 4500,      // time before next slide appears (in ms)
  7.     slideSpeed: 1000,   // time it takes to slide in each slide (in ms)
  8.     tabSpeed: 300,      // time it takes to slide in each slide (in ms) when rotating through tabs
  9.     fx: 'scrollLeft',   // slide control: fade, scrollLeft, right etc.
  10.     
  11.     init: function() {
  12.         // set the context to help speed up selectors/improve performance
  13.         this.context = $('#slider');
  14.         
  15.         // set tabs to current hard coded navigation items
  16.         this.tabs = $('ul.slides-nav li', this.context);
  17.         
  18.         // remove hard coded navigation items from DOM 
  19.         // because they aren't hooked up to jQuery cycle
  20.         this.tabs.remove();
  21.         
  22.         // prepare slider and jQuery cycle tabs
  23.         this.prepareSlideshow();
  24.         
  25.         $('#slider .slides li').css('display','block');
  26.     },
  27.     
  28.     prepareSlideshow: function() {
  29.         // initialise the jquery cycle plugin -
  30.         // for information on the options set below go to: 
  31.         // http://malsup.com/jquery/cycle/options.html
  32.         $('div.slides > ul', $slider.context).cycle({
  33.             fx: $slider.fx,
  34.             timeout: $slider.timeout,
  35.             speed: $slider.slideSpeed,
  36.             fastOnEvent: $slider.tabSpeed,
  37.             pager: $('ul.slides-nav', $slider.context),
  38.             pagerAnchorBuilder: $slider.prepareTabs,
  39.             before: $slider.activateTab,
  40.             pauseOnPagerHover: true,
  41.             pause: true
  42.         });            
  43.     },
  44.     prepareTabs: function(i, slide) {
  45.         // return markup from hardcoded tabs for use as jQuery cycle tabs
  46.         // (attaches necessary jQuery cycle events to tabs)
  47.         return $slider.tabs.eq(i);
  48.     },
  49.     activateTab: function(currentSlide, nextSlide) {
  50.         // get the active tab
  51.         var activeTab = $('a[href="#' + nextSlide.id + '"]', $slider.context);
  52.         
  53.         // if there is an active tab
  54. if(activeTab.length) {
  55.             // remove active styling from all other tabs
  56.             $slider.tabs.removeClass('on');
  57.             // add active styling to active button
  58.             activeTab.parent().addClass('on');
  59.         }            
  60.     }            
  61. };

  62. $(function() {
  63.     // add a 'js' class to the body
  64.     $('body').addClass('js');    
  65.     // initialise the slider when the DOM is ready
  66.     $slider.init();
  67. jQuery("#compare_review_table").tablesorter();
  68. });  
  69. </script>