<!--
function changeBlt(elem, action){
if (action == "on"){
	elem.parentNode.parentNode.firstChild.className ='bulletOn'
	} else if (action == ""){
	elem.parentNode.parentNode.firstChild.className ='bullets'
	} else if (action == "aon"){
		elem.parentNode.parentNode.parentNode.firstChild.firstChild.className ='bulletOn'
	} else if (action == "aoff"){
		elem.parentNode.parentNode.parentNode.firstChild.firstChild.className ='bullets'
	} else if (action == "adon"){
		elem.parentNode.parentNode.firstChild.className ='bulletArOn'
	} else if (action == "adoff"){
		elem.parentNode.parentNode.firstChild.className ='bulletAr'
	}
}

-->

