﻿jQuery.fn.log = function(msg) {
///<summary>Handy little tool for ouputting a message to the console in Firefox and Webkit browsers</summary>
///<param name="msg">The message you wish to display in the console</param>
///<return>Returns the looging object</return>
    
    if (jQuery.fn.logging) {
        if (window.console)
         window.console.log("%s: %o", msg, this);
        return this;
    }
};

jQuery.fn.logging = true;
