// JavaScript Document
		//when the dom is ready
		window.addEvent('domready', function() {
			//create the tooltips
			var tipz = new Tips('.Tips3',{
				className: 'tipz',
				fixed: true,
				hideDelay: 500,
				showDelay: 500,
			});
			
			//customize
			
			tipz.addEvents({
				'show': function(tip) {
					tip.fade('in');
				},
				'hide': function(tip) {
					tip.fade('out');
				}
			});
			
			
		});