//JavaScript Document
//Place functions within this document
//Call functions within the dom ready in the html page

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

var toolTips = new Tips(customTips, {
	showDelay: 500,
	hideDelay: 100,
	className: 'tooltip',
	offsets: {
		'x': 16,
		'y': 16
	},
 	fixed: false,
	onShow: function(toolTipElement){
    	toolTipElement.fade(0.9);
	},
	onHide: function(toolTipElement){
    	toolTipElement.fade(0);
	}
});

});
