/*	function for the View of the title-Attribute beside the icons */
function tiVi(linkObj) {
	if(document.getElementsByTagName) {
		text = " ";
		spanObj = linkObj.parentNode.parentNode.parentNode.getElementsByTagName("span");
		titleViewObj = spanObj[spanObj.length-1].firstChild;
		if(titleViewObj.nodeValue != linkObj.getAttribute("title")) text = linkObj.getAttribute("title");
		titleViewObj.nodeValue = text;
	}
}
