// syntaxhighlighter scripts

// JSファイルを格納するディレクトリ
var uri="http://www.s-kuwahara.com/js/";

// 以下のfile[*]の設定
function myfile(n) {
        this.length = n;
        	for (i = 0; i < n; i++) {
		this[i] = null
		}
}

// 呼び出したいjs-file
var n = 6;
var file = new myfile(n)
file[0] = "base.js";
file[1] = "styleswitcher.js";
file[2] = "backtotop.js";
file[3] = "minmax.js";
file[4] = "jquery.js";
file[5] = "jquery/PictureSlides.js";

// head内にてscript呼び出し
for (i = 0; i <n; i++) {
 document.write('<script type="text/javascript" src="',uri,file[i],'"></script>');
}
