﻿var byBiz = new Array(b_0, b_1, b_2, b_3, b_4, b_5, b_6, b_7, b_8, b_9, b_10, b_11, b_12, b_13, b_14, b_15, b_16, b_17, b_18, b_19, b_20, b_21, b_22, b_23, b_24);


function PyCharIndex1() {
    var tv = jQuery("#showContent");
    var as = jQuery("#ulIndexMenu #pingy a");
    as.each(function(i) {
        var _this = as.eq(i);
        jQuery(_this).bind("mousemove",
            function() {
              
                jQuery(_this).addClass("over").siblings().removeClass();
                tv.html(byBiz[i]);
                tv.show();
                tv.hover(
                      function() {
                          jQuery(_this).addClass("over").siblings().removeClass();
                          jQuery(this).show();
                      },
                      function() {
                          jQuery(this).hide();
                          jQuery(_this).removeClass();
                      }
                  );
            }
        );
        jQuery(_this).bind("mouseout", function() {
            jQuery(_this).removeClass();
            tv.hide();
        })
    })

}
