// Share and Send

$('a.share').each(function(){
	var permalink = $(this).attr('rel');
	var titre = $(this).attr('title'); 

	$(this).simpletip('Chargement...', {
		width: '130px',
		showOn: 'click',
		hideOthers: true,
		hideOn: { element: '.close', event: 'click' },
		delay: 10,
		hook: {
			target: 'topMiddle',
			tooltip: 'topMiddle'
		},
		parentClass: 'tooltip-light',
		onShow: function(){
			this.load('/lib/share/share.php',  { url : permalink, title : titre });
		}
	})

});
$('a.share2').each(function(){
	var permalink = $(this).attr('rel');
	var titre = $(this).attr('title'); 

	$(this).simpletip('Chargement...', {
		width: '130px',
		showOn: 'click',
		hideOthers: true,
		hideOn: { element: '.close', event: 'click' },
		delay: 10,
		hook: {
			target: 'topLeft',
			tooltip: 'topLeft'
		},
		parentClass: 'tooltip-light',
		onShow: function(){
			this.load('/lib/share/share.php',  { url : permalink, title : titre });
		}
	})

});

