	function show_tooltip(e)
	{
		var elem = typeof e.srcElement == 'undefined' ? this : e.srcElement;
		var _tt = document.getElementById("_tooltip");
		_tt.innerHTML = elem.alt;
		_tt.className = 'show';
		_tt.style.top = (e.pageY?e.pageY:(e.clientY + document.body.scrollTop
			+ document.documentElement.scrollTop)) - 20 +"px"; 
		_tt.style.left = (e.pageX?e.pageX:(e.clientX + document.body.scrollLeft
			+ document.documentElement.scrollLeft)) + 10 +"px";
		if ($('#_tooltip').is(':hidden')) $('#_tooltip').fadeIn("slow");
		if(browser.isIE && _tt.style.position == ''){
			_tt.style.position = 'absolute';
			_tt.style.width = '200px';
			_tt.style.height = 'auto';
			_tt.style.overflow = 'visible';
			_tt.style.padding = '6px';
			_tt.style.borderBottom = '1px #EDDBC9 solid';
			_tt.style.borderRight = '1px #EDDBC9 solid';
			_tt.style.background = '#FFF7C4';
		}
	}

	function hide_tooltip(e)
	{
		if (!$('#_tooltip').is(':hidden')) $('#_tooltip').fadeOut("fast");
	}

	$(document).ready(function(){
		var labels = document.getElementById("content").getElementsByTagName("label");
		for(var t in labels){
			if(labels[t].title){
				labels[t].alt = labels[t].title;
				labels[t].title = '';
				labels[t].className = 'ttip';
				setHandler(labels[t], 'mouseover', show_tooltip)
				setHandler(labels[t], 'mouseout', hide_tooltip)
			}
		}		
	});
