var current_id=0;
var flag_full=true;
function init_brands(){
$('.b-items a').live('click',function(){
  if(flag_full){
    if(current_id==0){
      $('.b-razdels').before('<h2>Представлен в каталоге</h2>');
    }
    current_id = $(this).attr('id');
    $('.b-razdels').load('/brands.html?mode=get_brand',{brand_id:current_id},function(){
        $('.b-info').load('/brands.html?mode=get_brand_info',{brand_id:current_id});
    });
    $(this).siblings().removeClass('active-');
    $(this).addClass('active-');
    return false;
  }
});
}
function init_letters(){
$('.b-abc a').click(function(){
  $(this).siblings().removeClass('active-');
  $(this).addClass('active-');
  $('.b-items').load('/brands/'+$(this).find('span').html()+'.html?mode=get_brands_letters',function(){
      $('.brends h2').remove();
      current_id=0;
      $('.b-razdels').empty();
      $('.b-info').empty();
  });
  return false;
});
}
$(document).ready(function(){
  init_brands();
  init_letters();
  var brand = window.location.hash.replace('#','');
  if(brand){
    $('#'+brand).click();
  }
});
