var ToolTip = new Class({
	Implements: [Options,Events],
	
	options: {
		classSelector: "ToolTipV1"
	},
	
	initialize: function(options) {
		this.setOptions(options);
		
		$$('.'+this.options.classSelector).each(function(el) {
			el.setStyles({
				'position': 'relative',
				'cursor': 'pointer'
			});
			var myAnchor = new Element('div', {
				'class': 'tip',
				'html': el.getProperty('title'),
				'style': 'position:absolute; z-index:99999; bottom:20px; left:-8px; display:block; width:auto; padding:0 5px 8px 5px; line-height:25px; font-size:11px; color:#fff; text-decoration:none; text-indent:0; white-space:nowrap; background: url(http://assets.vtele.ca/lib/images/ui/toolTipBg'+(IE6_no_more?'IE6':'')+'.png) no-repeat left top;'
			});
			el.addEvents({
				'mouseover': function() {
					myAnchor.inject(el,'top');
				},
				'mouseleave': function() {
					myAnchor.dispose();
				}
			});
		});
		
	}
});