var docTips = new TipObj('docTips');

with(docTips){
	template = '<table class="infoTip" width="%3%"><tr><td style="width: 200;">%3%<td><tr></table>';
    
    showDelay = 40;
    hideDelay = 80;
    
    doFades = true;
    
    minAlpha = 0;
    maxAlpha = 100;
    
    fadeInSpeed = 80;
    fadeOutSpeed = 80;
    
    tipStick = 0.1;
}

function titlesToTips(){
	jQuery('[title]').each(function(i,el){
		el._title = el.getAttribute('title');
		el.removeAttribute('title');
		if(!el._title) return;
		el.onmouseover = function() {
    		docTips.newTip("tagTip"+i , 14, 14, 100, this._title);
    	}
    	el.onmouseout = function(){docTips.hide()};
   		
	});
};

