
$(function(){
$(".webmember li").each(function(index,dome){
$(this).mouseover(function(){
$(".webmember li").removeClass("limcur");
$(this).addClass("limcur");
$(".membercon").css("display","none");
$(".membercon").eq(index).css("display","block")
})
}); 	   
		   
		   
$(".web_nav a").hover(function(){
$(this).addClass("ahover")},function(){$(this).removeClass("ahover")}); 



$(".xiangmu table tr:first-child").children().children(".ppic").css("display","block"); 
$(".xiangmu td").mouseover(function(){
$(this).parent().parent().children().children().removeClass("tdcur").children(".ppic").css("display","none"); 
$(this).addClass("tdcur").find(".ppic").css("display","block"); 
})
})

