var nowLocation = document.URL ;

if(nowLocation.match(/listView/i)){

	obj = document.getElementById('openSearchStartFlg') ;
	
	while(obj.tagName != 'UL'){
		obj = obj.nextSibling;
	}

	objUl = obj;

	obj = obj.firstChild;

	flg = false;
	
	while(!flg){

		while(obj && obj.tagName != 'H2'){

			if(obj.tagName == 'LI'){

				if(obj.firstChild.tagName == 'A' && obj.firstChild.href == nowLocation){

					obj = obj.parentNode;
					obj = obj.firstChild;

					if(obj){
						while(obj && (obj.tagName != 'UL' || obj.tagName != 'H2')){
							if(obj.tagName == 'LI'){
								obj.style.display = '';
							}
							if(obj.nextSibling){
								obj = obj.nextSibling;
							}else{
								break;
							}
						}
					}
					flg = true;
				}

			}
			
			obj = obj.nextSibling;

		}

		obj = objUl;
		obj = obj.nextSibling;
		objUl = obj;
		obj = obj.firstChild;
	}
}

function dispChild(obj) {

	obj = obj.nextSibling;
	
	if(obj.tagName != 'UL'){
		obj = obj.nextSibling;
	}

	obj = obj.firstChild;

	while(obj && obj.tagName != 'H3'){
	
		if(obj.tagName == 'LI'){
		
			if(obj.style.display == 'none')
				obj.style.display = '';
			else
				obj.style.display = 'none';
		
		}
		
		obj = obj.nextSibling;

	}
}

