var WO_START = new Date();     

function WO_MAIN_INIT(e) {
     WO.console.log("WO Running WO_MAIN_INIT");

     // your pre WO.init script here

     WO.console.log("WO finished WO_MAIN_INIT");
} 

function WO_INIT_AFTER(e) {
  WO.console.log("WO Running function WO_INIT_AFTER");

  // your post WO.init script here - not working at the moment 

  WO.timelog.log.each(function(oLog){
    WO.console.dump(oLog);
  });
  WO.console.log("WO finished WO_INIT_AFTER");
} 

