/* 
 * Common Scripts
 * Created : 2010-02-02
 * Modified: 2010-02-02
 */

// document root path
var docRoot = '/ippitsudo'; // test
//var docRoot = '/';

script('/js/lib/jquery/jquery-1.4.1.min.js');
script('/js/lib/jquery/extends/jquery.easing.1.3.js');
script('/js/lib/util.js');
script('/js/plugin/jquery/jfeed/build/dist/jquery.jfeed.js');
script('/js/config.feed.js');





function script(path) {
  var scriptPath = '<script charset="UTF-8" type="text/javascript" src="'+ docRoot + path + '"></script>';
  document.write(scriptPath);
}
