window.addEvent('domready', function(){

		  //store titles and text
		  $$('.hasTip3').each(function(element,index) {
			var content = element.get('title').split('::');
			element.store('tip:title', content[0]);
			element.store('tip:text', content[1]);
		  });
           //do your tips stuff in here...
           var zoomTip = new Tips($$('.hasTip3'), {
			className: 'custom3',
			fixed: false,
			hideDelay: 50,
			showDelay: 50
		  });
	
			zoomTip.addEvents({
			  'show': function(toolTip) {
				toolTip.fade('in');
			  },
			  'hide': function(toolTip) {
				toolTip.fade('out');
			  }
			});
        });

