var Bottom002900={
    main:function(){
        //栏目等间距
         Bottom002900.btr2900(".Bottom002900 nav","dl");
      $(window).resize(function(){
         Bottom002900.btr2900(".Bottom002900 nav","dl");
      });
    //关注我们
    $(".Bottom002900 .share li").hover(function(){
        $(this).find("figure").stop(true,true).fadeIn();
        $(this).siblings().find("figure").fadeOut();
    },function(){
        $(this).find("figure").stop(true,true).fadeOut();
    });
    },
    btr2900:function(v,a){
    var sumWidth =0;
    var _this=$(v)
      var navW=_this.width()
    _this.find(a).each(function(){
         sumWidth += $(this).width()
    });
    var n=_this.find(a).length-1
    var mr=(navW-sumWidth)/n
    _this.find(a).not(":last-child").css("margin-right",mr);
    }
}