/**
  *  @name    jQuery Logging plugin
  *  @author  Dominic Mitchell
  *  @url     http://happygiraffe.net/blog/archives/2007/09/26/jquery-logging
  */
 
(function($){ // block scope
 
        jQuery.fn.log = function(msg){
                if (window.console || console.firebug){
                        msg = msg || '';
                        if(msg !== '') msg += ': ';
                        console.log("%s%o", msg, this);
                }
                return this;
        };
 
})(jQuery);
