// JavaScript Document

jQuery(function($){
	//alert('123');
	$("table#list_large tbody tr:even").addClass('even');
	$("table#list_large tbody tr").mouseover(function(){$(this).addClass('over');}).mouseout(function(){$(this).removeClass('over')})
	});
/*--		
function changeTableBg()
{
   	
   //var changeTr=document.getElementById('list_large').getElementsByTagName('tr'); 
   //for(i=0;i<changeTr.length;i++)
   //{
   //   changeTr[i].className=(i%2>0)?"even":"odd";
	//  changeTr[i].temp=changeTr[i].className;
	//  changeTr[i].onmouseover=function(){this.className='over';}
	//  changeTr[i].onmouseout=function(){this.className=this.temp;}
   //}
}--*/

function selectTag(showContent,selfObj){
	// ²Ù×÷±êÇ©
	var tag = document.getElementById("tags").getElementsByTagName("li");
	var taglength = tag.length;
	for(i=0; i<taglength; i++){
		tag[i].className = "";
	}
	selfObj.parentNode.className = "selectTag";
	// ²Ù×÷ÄÚÈÝ
	for(i=0; j=document.getElementById("tagContent"+i); i++){
		j.style.display = "none";
	}
	document.getElementById(showContent).style.display = "block";

}

