window.addEvent('domready', function() {
var customTips = $$('.tooltip');

var toolTips = new Tips(customTips, {
	
	showDelay: 500,    //default is 100	
	hideDelay: 100,   //default is 100	
	className: 'anything', //default is null		
	offsets: {
		'x': 420,       //default is 16 
		'y': 280        //default is 16 
	},	
 	fixed: true,      //default is false	
	onShow: function(toolTipElement){
    	toolTipElement.fade(.85);
		$('show').highlight('#FFF504');
	},
	onHide: function(toolTipElement){
    	toolTipElement.fade(0.);
		$('hide').highlight('#FFF504');
	}
});


});

