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