$.fn.extend({
    
    openInviter : function(options) {
    	$(this).each(function(i,e) {
    	   
			var datas = $.extend({
				titre           : 'Inviter vos amis',
				width           : 520,
				height          : 450,
				message_edit    : 0,
				message_sujet   : '',
				message_box     : '',
                provider_box    : 'facebook',
                TB_iframe       : 'true',
                stat_url        : 0
			}, options);
        	
			$(this).click(function() {
				var url = 'http://master.clubic.com/api/openinviter/ajax.php';                                                 
				tb_show(datas.titre, url + '?' + $.param( datas ), false, '');
				return false;
                
			});
    	});
    }
    
});

function openInviterJsLoaded(){
    return true;
}