// JavaScript Document

// JSファイルを格納するディレクトリ（絶対パスで指定） //
// var uri="http://ドメイン/common/js/"; //
var uri="http://simsystem.heteml.jp/common/js/";

// 以下のfile[*]の設定 ///
function myfile(n) {
        this.length = n;
        	for (i = 0; i < n; i++) {
		this[i] = null
		}
}

// 呼び出したいjs-file（数とファイル名） //
var n = 3;
var file = new myfile(n)
file[0] = "smartRollover.js"; //ロールオーバー
file[1] = "iepngfix.js"; // IE6での画像透過処理（png）
file[2] = "jquery.js";//jquery

// head内にてscript呼び出し（テキストエンコード） //
for (i = 0; i <n; i++) {
 document.write('<script type="text/javascript" charset="utf-8" src="',uri,file[i],'"></script>');
}


