$(function(){
	var span = '<span></span>';
	$('.tab_h1 strong a').wrapInner(span);
	
	$('.tab_con div:gt(0)').hide();
	var menu_li = $('.tab_h1 strong');
	
	$('.tab_h1 strong').mouseover(function(){
		$(this).addClass('xuan')
			   .siblings().removeClass('xuan');
		
		var index = menu_li.index(this);
		$('.tab_con div').eq(index).show()
							 .siblings().hide();

	});
});
