var x;
var obj;

function showBrand(){
  $(obj[x]).show(100);
  if(x<obj.length){
    setTimeout("showBrand()", 100);
  }
  x++;
}

function allBrands(){
  x=0;
  obj=$("#allBrands a");
  showBrand();
  $(".all_brand").hide();
  $(".brand_all").css({height:"10px"});
};
