$(document).ready(function() {
	n1=0;
	$('.wtab03').find('li').click(function() {
		$('.wtab03').find('li').removeAttr('id');
		$(this).attr('id','wmove3');
		var n0=$('.wtab03').find('li').index(this);
		if (n1==n0) { return false;}
		$('.wtabBox_03').hide();
		//$('.tabBox_0').eq(n0).fadeIn('fast');
		$('.wtabBox_03').eq(n0).show();
		n1=n0;
	});
	
	//首页TAB效果
	np=0;
	$('.h_box').eq(0).show();
	$('.h_nav0').find('li').click(function() {
		$('.h_nav0').find('li').removeClass('move');
		$(this).addClass('move');
		var np0=$('.h_nav0').find('li').index(this);
		if (np==np0) { return false;}
		$('.h_box').hide();
		$('.h_box').eq(np0).show();
		np=np0;
	}); 
	npp=0;
	$('.hh_box').eq(0).show();
	$('.hh_nav').find('li').click(function() {
		$('.hh_nav').find('li').removeClass('move');
		$(this).addClass('move');
		var npp0=$('.hh_nav').find('li').index(this);
		if (npp==npp0) { return false;}
		$('.hh_box').hide();
		$('.hh_box').eq(npp0).show();
		npp=npp0;
	});
	
})
