window.addEvent('domready', function(){
	
	var info_sell_master = new Element('img', {'src': 'templates/jp_shop/images/typo/bullet-info.gif', 'class': 'thetip', 'title': 'Outil de transmission de dossiers simple et rapide.'});
	var info_sell_express = new Element('img', {'src': 'templates/jp_shop/images/typo/bullet-info.gif', 'class': 'thetip', 'title': 'Outil de transmission de dossiers plus complet pour les experts du financement'});
	
	var sell_master = $('sell_tools').getLast();
	var sell_express = $('sell_tools').getFirst();
	
	info_sell_master.inject(sell_master, 'top');
	info_sell_express.inject(sell_express, 'top');

	var thetip = new Tips($$('.thetip'), {
		initialize:function(){
			this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
		},
		onShow: function(toolTip) {
			this.fx.start(1);
		},
		onHide: function(toolTip) {
			this.fx.start(0);
		}
	});
}); 
