$(document).ready(function(){
  $('.cat-type a').click(function(){
    var id = $(this).attr('id');
    $('#container').load('/brands.html?mode='+id,{ajax:1},function(){
    init_brands();
    $(".rotator").each(function() {
      prepareRotator($(this));
    });

    });
    $(this).parent().siblings().removeClass('active-');
    $(this).parent().addClass('active-');
    return false;
  });
});
