/**
*
*   import.js
*   "SyntaxHighLighter2"のJSファイルをまとめて読み込む
*
**/
(function(){
	var importSrc = function(e){
		return '<script type="text/javascript" src="'+ e +'"></script>' + "\n";
	}
	//SyntaxHighLighter2で使用するJS
	var path = 'http://littlestrokes.orz.hm/wordpress/sh/scripts/';

	document.write( importSrc( path + 'shCore.js' ) );
	document.write( importSrc( path + 'shBrushBash.js' ) );
	document.write( importSrc( path + 'shBrushCSharp.js' ) );
	document.write( importSrc( path + 'shBrushCpp.js' ) );
	document.write( importSrc( path + 'shBrushCss.js' ) );
	document.write( importSrc( path + 'shBrushDelphi.js' ) );

	document.write( importSrc( path + 'shBrushDiff.js' ) );
	document.write( importSrc( path + 'shBrushGroovy.js' ) );
	document.write( importSrc( path + 'shBrushJScript.js' ) );
	document.write( importSrc( path + 'shBrushJava.js' ) );
	document.write( importSrc( path + 'shBrushOracle.js' ) );
	document.write( importSrc( path + 'shBrushPerl.js' ) );
	document.write( importSrc( path + 'shBrushPhp.js' ) );
	document.write( importSrc( path + 'shBrushPlain.js' ) );
	document.write( importSrc( path + 'shBrushPython.js' ) );

	document.write( importSrc( path + 'shBrushRuby.js' ) );
	document.write( importSrc( path + 'shBrushScala.js' ) );
	document.write( importSrc( path + 'shBrushSql.js' ) );
	document.write( importSrc( path + 'shBrushVb.js' ) );
	document.write( importSrc( path + 'shBrushXml.js' ) );
})();

