$(document).ready(function(){


  $(".NavMenu>li").bind('mouseover',function(){  
  $(".NavMenu>li>a").css("color","#000");
  $(this).children("a").css("color","#6D1B45");
  $(this).children('ul').show();
  }).bind('mouseleave',function(){
  $(this).children("a").css("color","#6D1B45");  
  $(this).children('ul').hide();   
  });   
  
  $(".NavMenu").bind('mouseleave',function(){
  $(this).children("li").children("a").css("color","#000");  
  });  
  
 
 
$(".JobTb b").toggle(
  function () {
    $(this).html("收起");
	$(this).parent("td").parent("tr").next(".xq").show();
  },
  function () {
	$(this).html("详情");  
    $(this).parent("td").parent("tr").next(".xq").hide();
  }
);

 
 
 
 
 
 
 
 
 
  
  
  


$(".CommunityNewsTb tr").hover(
  function () {
    $(this).children("td").addClass("CommunityNewsTbTdHover");
  },
  function () {
    $(this).children("td").removeClass("CommunityNewsTbTdHover");
  }
);








$(".Focus1_1").bind('mouseover',function(){  
  $(".Focus1").fadeIn();
  $(".Focus2").hide();
  $(this).css("background","#f2f2f2");
  $(".Focus2_1").css("background","#fff");
  
  }); 
  
  $(".Focus2_1").bind('mouseover',function(){  
  $(".Focus2").fadeIn();
  $(".Focus1").hide();
  $(this).css("background","#f2f2f2");
  $(".Focus1_1").css("background","#fff");
  });   


$(".JobTb tr:even").children("td").css("background","#f2f2f2")








//$(".BranchedStructureList li a").toggle(
//  function () {
//  $(".BranchedStructureList li").children(".Block").hide();
//  $(this).next(".Block").slideDown();
//  },
//  function () {
//   $(".BranchedStructureList li").children(".Block").slideUp();
//  }
//);

  // $(".BranchedStructureList li a").click(function(){
//	 $(this).next(".Block").slideDown();  
//   });
   
   
   $(".BranchedStructureList li a").bind('mouseover',function(){
	 $(this).next(".Block").show();  
   });





  $(".BranchedStructureList li").bind('mouseleave',function(){
  $(this).children(".Block").hide();   
  });  





































});


