var tooltip=function(){
	var id = 'tt';
	var top = 3;
	var left = 3;
	var maxw = 375;
	var speed = 10;
	var timer = 20;
	var endalpha = 95;
	var alpha = 0;
	var tt,t,c,b,h;
	var ie = document.all ? true : false;
	return{
		createText:function(ta,s){
			var ps = navigator.productSub 
			var ab = ""
			var ap = ""
			var titCol = (s[0])? "COLOR='"+s[0]+"'" : ""
			var txtCol = (s[1])? "COLOR='"+s[1]+"'" : ""
			var titBgCol = (s[2])? "BGCOLOR='"+s[2]+"'" : ""
			var txtBgCol = (s[3])? "BGCOLOR='"+s[3]+"'" : ""
			var titBgImg = (s[4])? "BACKGROUND='"+s[4]+"'" : ""	
			var txtBgImg = (s[5])? "BACKGROUND='"+s[5]+"'" : ""
			var titTxtAli = (s[6] && s[6].toLowerCase()!="left")? "ALIGN='"+s[6]+"'" : ""
			var txtTxtAli = (s[7] && s[7].toLowerCase()!="left")? "ALIGN='"+s[7]+"'" : ""   
			var add_height = (s[15])? "HEIGHT='"+s[15]+"'" : ""
			if(!s[8])  s[8] = "Verdana,Arial,Helvetica"
			if(!s[9])  s[9] = "Verdana,Arial,Helvetica"					
			if(!s[12]) s[12] = 1
			if(!s[13]) s[13] = 1
			if(!s[14]) s[14] = 200
			if(!s[16]) s[16] = 0
			if(!s[17]) s[17] = 0
			if(!s[18]) s[18] = 10
			if(!s[19]) s[19] = 10
			var hs = s[11].toLowerCase() 
			if(ps==20001108){
			if(s[2]) ab="STYLE='border:"+s[16]+"px solid"+" "+s[2]+"'"
			ap="STYLE='padding:"+s[17]+"px "+s[17]+"px "+s[17]+"px "+s[17]+"px'"}
			var closeLink=(hs=="sticky")? "<TD ALIGN='right'><FONT SIZE='"+s[12]+"' FACE='"+s[8]+"'><A HREF='javascript:void(0)' ONCLICK='stickyhide()' STYLE='text-decoration:none;color:"+s[0]+"'><B>Close</B></A></FONT></TD>":""
			var title=(ta[0]||hs=="sticky")? "<TABLE WIDTH='100%' BORDER='0' CELLPADDING='0' CELLSPACING='0'><TR><TD "+titTxtAli+"><FONT SIZE='"+s[12]+"' FACE='"+s[8]+"' "+titCol+"><B>"+ta[0]+"</B></FONT></TD><TD "+titTxtAli+"><FONT SIZE='"+s[12]+"' FACE='"+s[8]+"' "+txtCol+"><I>"+ta[1]+"</I></FONT></TD><TD "+titTxtAli+"><FONT SIZE='"+s[12]+"' FACE='"+s[8]+"' "+txtCol+"><I>"+ta[2]+"</I></FONT></TD>"+closeLink+"</TR><TR><TD>&nbsp;</TD></TR></TABLE>" : ""
			var txt="<TABLE "+titBgImg+" "+ab+" WIDTH='"+s[14]+"' BORDER='0' CELLPADDING='"+s[16]+"' CELLSPACING='0' "+titBgCol+" ><TR><TD>"+title+"<TABLE WIDTH='100%' "+add_height+" BORDER='0' CELLPADDING='"+s[17]+"' CELLSPACING='0' "+txtBgCol+" "+txtBgImg+"><TR><TD "+txtTxtAli+" "+ap+" VALIGN='top'><FONT SIZE='"+s[13]+"' FACE='"+s[9]+"' "+txtCol +"><B>Definition:</B>&nbsp;&nbsp;</FONT></TD><TD "+txtTxtAli+" "+ap+" VALIGN='top'><FONT SIZE='"+s[13]+"' FACE='"+s[9]+"' "+txtCol +">"+ta[3]+"</FONT></TD></TR><TR><TD>&nbsp;</TD></TR><TR><TD "+txtTxtAli+" "+ap+" VALIGN='top'><FONT SIZE='"+s[13]+"' FACE='"+s[9]+"' "+txtCol +"><B>Example:</B></FONT></TD><TD "+txtTxtAli+" "+ap+" VALIGN='top'><FONT SIZE='"+s[13]+"' FACE='"+s[9]+"' "+txtCol +">"+ta[4]+"</FONT></TD></TR></TABLE></TD></TR></TABLE>"
			return txt;
		},
		show:function(v,vs,w){
			if(tt == null){
				tt = document.createElement('div');
				tt.setAttribute('id',id);
				t = document.createElement('div');
				t.setAttribute('id',id + 'top');
				c = document.createElement('div');
				c.setAttribute('id',id + 'cont');
				b = document.createElement('div');
				b.setAttribute('id',id + 'bot');
				tt.appendChild(t);
				tt.appendChild(c);
				tt.appendChild(b);
				document.body.appendChild(tt);
				tt.style.opacity = 0;
				tt.style.filter = 'alpha(opacity=0)';
				document.onmousemove = this.pos;
			}
			tt.style.display = 'block';
			c.innerHTML = vs ? tooltip.createText(v,vs) : v;
			tt.style.width = w ? w + 'px' : 'auto';
			if(!w && ie){
				t.style.display = 'none';
				b.style.display = 'none';
				tt.style.width = tt.offsetWidth;
				t.style.display = 'block';
				b.style.display = 'block';
			}
			if(tt.offsetWidth > maxw){tt.style.width = maxw + 'px'}
			h = parseInt(tt.offsetHeight) + top;
			clearInterval(tt.timer);
			tt.timer = setInterval(function(){tooltip.fade(1)},timer);
		},
		pos:function(e){
			var u = ie ? event.clientY + document.documentElement.scrollTop : e.pageY;
			var l = ie ? event.clientX + document.documentElement.scrollLeft : e.pageX;
			tt.style.top = (u - h) + 'px';
			tt.style.left = (l + left) + 'px';
		},
		fade:function(d){
			var a = alpha;
			if((a != endalpha && d == 1) || (a != 0 && d == -1)){
				var i = speed;
				if(endalpha - a < speed && d == 1){
					i = endalpha - a;
				}else if(alpha < speed && d == -1){
					i = a;
				}
				alpha = a + (i * d);
				tt.style.opacity = alpha * .01;
				tt.style.filter = 'alpha(opacity=' + alpha + ')';
			}else{
				clearInterval(tt.timer);
				if(d == -1){tt.style.display = 'none'}
			}
		},
		hide:function(){
			clearInterval(tt.timer);
			tt.timer = setInterval(function(){tooltip.fade(-1)},timer);
		}
	};
}();
/* verbalearn id 575500106 */