		
			
		window.addEvent('domready', function() {
			
			
			//store titles and text
			/*$$('a.tipz').each(function(element,index) {
				var content = element.get('title').split('::');
				element.store('tip:title', content[0]);
				element.store('tip:text', content[1]);
			});*/
			
			//create the tooltips
			/*var tipz = new Tips('.tipz',{
				className: 'tipz',
				fixed: true,
				hideDelay: 50,
				showDelay: 50
			});*/
			var tipz = new Tips($$('.tipz'), {className: 'tipz', 
				fixed: true,
				initialize: function(){
					this.tip.setStyle('opacity', 50);
				},
				onShow: function () {		
					this.tip.fade('in');
				},
				onHide: function() {		
					this.tip.fade('out');	
				}

			});			

		});





