(function(){
	var importSrc = function(e){
		return '<script type="text/javascript" src="'+ e +'"></script>' + "\n";
	}
	var importCss = function(e){
		return '<link rel="stylesheet" type="text/css" href="'+ e +'" />' + "\n";
	}
	
	// ----------------------------------------------------------------------
	// JSディレクトリへの絶対パス（各サイトに応じて要編集）
	// ----------------------------------------------------------------------
	var path = '/admin/wp-content/themes/original/js/';
	// ----------------------------------------------------------------------
	// jQueryフレームワーク（jQueryを利用するスクリプトを必要に応じて追記）
	// ----------------------------------------------------------------------
	document.write( importSrc( path + 'jquery-1.4.2.min.js' ) );
	document.write( importSrc( path + 'jquery-browser.js' ) );
	document.write( importSrc( path + 'jquery-ui.core.js' ) );
	document.write( importSrc( path + 'jquery-easing.js' ) );
	document.write( importSrc( path + 'jquery-cookie.js' ) );
	document.write( importSrc( path + 'jquery-scrollfollow.js' ) );
	// ----------------------------------------------------------------------
	// サイト内共通JavaScript（通常のJSライブラリを必要に応じて追記）
	// ----------------------------------------------------------------------
	document.write( importSrc( path + 'GetRSS.js' ) );
	document.write( importSrc( path + 'SmartRollover.js' ) );
	document.write( importSrc( path + 'ScrollTop.js' ) );
	document.write( importSrc( path + 'heightLine.js' ) );
	document.write( importSrc( path + 'external.js' ) );
})();


