$j(document).ready(function(){
	$j('#BrandListWidget').jcarousel({
		auto: 2,
		scroll: 1,
		animation: 'slow',
		wrap: 'both',
    easing: 'linear'
	});

  if($j.browser.msie)  {
  var zIndexNumber = 1000;

  $j('.dock').each(function() {
    $j(this).css('zIndex', zIndexNumber);
    zIndexNumber -= 10;
  });
  };
  $j('#CurrentCategoryDock a.show-additional-subcategories').click(function(event){
    $j('#CurrentCategoryDock ul.additional-subcategories').toggle();
    event.preventDefault()
  });
});

