function dom_init() {
  $('body').addClass('js');
  
  var $buoop = {} 
  $buoop.ol = window.onload; 
  window.onload=function(){ 
   if ($buoop.ol) $buoop.ol(); 
   var e = document.createElement('script'); 
   e.setAttribute('type', 'text/javascript'); 
   e.setAttribute('src', 'http://browser-update.org/update.js'); 
   document.body.appendChild(e); 
  }
}


// COPYRIGHT: http://happygiraffe.net/blog/2007/09/26/jquery-logging/
// Usage: $(root).find('li.source > input:checkbox').log("sources to uncheck").removeAttr("checked");
jQuery.fn.log = function (msg) {
    if (typeof console != 'undefined') console.log('%s: %o', msg, this);
    return this;
};

