function showDescription(div_id){
		if(document.getElementById(div_id).className=='listdescriptionShow'){
			document.getElementById(div_id).className='listdescriptionHide';
		}else{
			document.getElementById(div_id).className='listdescriptionShow';
		}
}