$(function(){
	$(".ywhbnav ul .ywtitle").mouseover(function(){
		$(this).addClass('on').siblings().removeClass('on');
		var index = $(this).index();
		//number = index;
		$('.ywhbbox .ywbox').hide();
		$('.ywhbnav .more').hide();
		$('.ywhbbox .ywbox:eq('+index+')').show();
		$('.ywhbnav .more:eq('+index+')').show();
	});
	$(".hyzxnav ul .zxtitle").mouseover(function(){
		$(this).addClass('on').siblings().removeClass('on');
		var index = $(this).index();
		//number = index;
		$('.hyzxbox .zxbox').hide();
		$('.hyzxnav .more').hide();
		$('.hyzxbox .zxbox:eq('+index+')').show();
		$('.hyzxnav .more:eq('+index+')').show();
	});
});