(function($){

    var methods = {
        
        noteBox:function(){
            
            //add html 
            $(this).html('<div class="header-note" id="header-note"><img id="close-button" class="close-button" src="http://localhost/baliincentive/images/pelengkap/close-button.png" title="Close message box." /></div><div class="body-note" id="body-note"></div><div class="footer-note" id="footer-note"></div>');
        },
        bodyNote:function(message_){
            
            $("#body-note").html(message_);
            
        }
        
    };

    $.fn.notebox = function(method){
        
        // Method calling logic
        if(methods[method]){
            
            return methods[method].apply(this,Array.prototype.slice.call(arguments,1));
            
        }else if(typeof method === 'object' || !method){
            
            return methods.noteBox.apply(this,arguments);
            
        }else{
            
            $.error('Method '+method+' does not exist on jQuery.tooltip');
            
        }
        
    };

})(jQuery);
