function hide(it){/*ÏÔÒþ²Ëµ¥*/
	it.children[1].style.visibility="hidden";
	it.children[1].style.display="none";
}
function show(it){	
	it.children[1].style.visibility="visible";
	it.children[1].style.display="block";
}
