function tt_Init_spl()
{
	if (!(tt_op || tt_n4 || tt_n6 || tt_ie || tt_w3c)) return;

	var htm = tt_n4? '<div style="position:absolute;"><\/div>' : '',
	tags,
	t_tj,
	over,
	esc = 'return escape(';
	var i = tt_tags.length; while(i--)
	{
		tags = tt_ie? (document.all.tags(tt_tags[i]) || 1)
			: document.getElementsByTagName? (document.getElementsByTagName(tt_tags[i]) || 1)
			: (!tt_n4 && tt_tags[i]=="a")? document.links
			: 1;
		if (tt_n4 && (tt_tags[i] == "a" || tt_tags[i] == "layer")) tags = tt_N4Tags(tt_tags[i]);
		var j = tags.length; while(j--)
		{
			if (typeof (t_tj = tags[j]).onmouseover == "function" && t_tj.onmouseover.toString().indexOf(esc) != -1 && !tt_n6 || tt_n6 && (over = t_tj.getAttribute("onmouseover")) && over.indexOf(esc) != -1)
			{
				if ( t_tj.name=="spl" ) {
					if (over) t_tj.onmouseover = new Function(over);
					var txt = unescape(t_tj.onmouseover());
					htm += tt_Htm(
						t_tj,
						"tOoLtIp"+i+""+j,
						txt.wzReplace("& ","&")
					);
					t_tj.onmouseover = new Function('e',
						'tt_Show(e,'+
						'"tOoLtIp' +i+''+j+ '",'+
						(typeof t_tj.T_ABOVE != tt_u)+','+
						((typeof t_tj.T_DELAY != tt_u)? t_tj.T_DELAY : ttDelay)+','+
						((typeof t_tj.T_FIX != tt_u)? '"'+t_tj.T_FIX+'"' : '""')+','+
						(typeof t_tj.T_LEFT != tt_u)+','+
						((typeof t_tj.T_OFFSETX != tt_u)? t_tj.T_OFFSETX : ttOffsetX)+','+
						((typeof t_tj.T_OFFSETY != tt_u)? t_tj.T_OFFSETY : ttOffsetY)+','+
						(typeof t_tj.T_STATIC != tt_u)+','+
						(typeof t_tj.T_STICKY != tt_u)+','+
						((typeof t_tj.T_TEMP != tt_u)? t_tj.T_TEMP : ttTemp)+
						');'
					);
					t_tj.onmouseout = tt_Hide;
					if (t_tj.alt) t_tj.alt = "";
					if (t_tj.title) t_tj.title = "";
				}
			}
		}
	}
	return htm;
}

