function show_ul( item )
{
	if( item.style.display == "" )
	{
		item.style.display = "none";
	}
	else
	{
		item.style.display = "";
	}
}