﻿
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();
        })
   })

}
