// jsファイル格納ディレクトリ
//var uri="http://www.tainavi.com/common/js/";
var uri="http://solarpow-guide.info/js/";

// 以下のfile[*]の設定
function myfile(n) {
        this.length = n;
                for (i = 0; i < n; i++) {
                this[i] = null
                }
}

// 呼び出したいjs-file
var n = 4; // 呼び出したいファイル数
var file = new myfile(n)
file[0] = "common.js";
file[1] = "jquery.js";
file[2] = "jquery_elements.js";
file[3] = "smoothscroll.js";

// head内にてscript呼び出し
for (i = 0; i <n; i++) {
 document.write('<script type="text/javascript" charset="UTF-8" src="',uri,file[i],'"></script>');
}
