/**
*
*   import.js
*   JSファイルをまとめて読み込む
*/

(function(){
  var importSrc = function(e){
	  return '<script type="text/javascript" src="'+ e +'"></script>' + "\n";
  }
  var path = './js/';
  //jQueryフレームワーク
  document.write( importSrc( path + 'jquery.js' ) );
  //サイト全体で使用するJS
  document.write( importSrc( path + 'validate.js' ) );
  document.write( importSrc( path + 'h@liveBase.js' ) );
  document.write( importSrc( path + 'ui.core.js' ) );
  document.write( importSrc( path + 'ui.tabs.js' ) );
  document.write( importSrc( path + 'incl.js' ) );
  document.write( importSrc( path + 'Draggable.js' ) );
  document.write( importSrc( path + 'messagectrl.js' ) );
  document.write( importSrc( path + 'htwSubmits.js' ) );
})();
