(function( $ ){
    // messenger
    jQuery.fn.chatMSN = function(id, opts) {
        var settings = {
            'windowURL'    : '/site/messenger.php',
            'alertOffline' : "No momento nosso atendimento está offline. Por favor, tente mais tarde."
        };
        return this.each(function(){
            if ( opts ) { $.extend( settings, opts ); }
            elem = this;

            $(elem).find("a").click(function(){
                if ( $(this).hasClass("on") ) {
                    window.open(settings.windowURL+'?id='+id,'indicacao','top=0,left=0,resizable=yes,location=no,toolbar=no,width=370,height=470,scrollbars=yes');
                } else {
                    alert(settings.alertOffline);
                }
                return false;
            });
        });
    }
        
})( jQuery );

