var loader = new YAHOO.util.YUILoader ({ 

  base: '/yui_2_7_0b/build/',
  require: [], 
  loadOptional: true, 
  timeout: 10000, 

  //combine: true,
  onFailure: function( msg, xhrobj ) {
    //alert( "There were some problems loading javascript libraries" );
    alert( debug_( msg ) );
  }

}); 

loader.addModule({
  name: "common",
  type: "js",
  fullpath: "/js/common.js?v=1",
  varName: "ML_COMMON"
});

loader.addModule({
  name: "WebPage",
  type: "js",
  fullpath: "/js/WebPage.js?v=7",
  varName: "ML_WEB_PAGE",
  requires: [ 'common', 'yahoo', 'connection', 'container', 'Client', 'Conference' ]
});

loader.addModule({
  name: "Client",
  type: "js",
  fullpath: "/js/Client.js?v=1",
  varName: "ML_CLIENT",
  requires: [ 'common' ]
});

loader.addModule({
  name: "Conference",
  type: "js",
  fullpath: "/js/Conference.js?v=5",
  varName: "ML_CONFERENCE",
  requires: [ 'common' ]
});

