  //
function show(self, id ,list ,a){
	//li 的数组列表
	var oList = $('#' + a).find('li');
	$(oList).removeClass("info");
	//var oList = document.getElementById(a).getElementsByTagName("li");
	//隐藏所有的内容
	$('div.olist').hide();
		
		//显示当前选择的TAB的内容
		$('#' + id).show();
		//设置当前选择的tab的class
		self.className = "info";
}
function swithButtons(index) {
    $("#sy_ssj .sy_ssj_bg1").removeClass("sy_ssj_bg1").addClass("sy_ssj_bg2");
    $("#sy_ssj .sy_ssj_word").hide("slow");
    $("#sy_ssj .sy_ssj_bg2:eq(" + index + ")").addClass("sy_ssj_bg1").removeClass("sy_ssj_bg2");
    $("#sy_ssj .sy_ssj_word:eq(" + index + ")").show("slow");
    
}