added jsdoc support, and a script to generate the docs.
Also added sample documentation for the IriSP.widget base class.
/** the parent */
var box = {};
/** @namespace */
box.holder = {}
box.holder.foo = function() {
/** the counter */
this.counter = 1;
}
box.holder.foo();
print(box.holder.counter);