function toggleNext(id){
	var next = id.firstChild.nextSibling;
	if(next.style.display!="block" )
		next.style.display = "block";
	else
		next.style.display = "none";
	return false;
}
