/* import.js */

(function(){
	var importSrc = function(e){
		return '<script type="text/javascript" src="'+ e +'"></script>' + "\n";
	}
	var path = '/js/';
	
	//jQueryフレームワーク
	document.write( importSrc( path + 'jquery.js' ) );

	//UserAgrnt
	document.write( importSrc( path + 'jquery.UserAgent.js' ) );
	document.write( importSrc( path + 'jquery.cookie.js' ) );
	
	//サイト全体で使用するJS
	document.write( importSrc( path + 'common.js' ) );
	document.write( importSrc( path + 'jsddm.js' ) );
	document.write( importSrc( path + 'jquery.easing.js' ) );

	//左ナビスクロール
	document.write( importSrc( path + 'jquery.ui.core.js' ) );
	document.write( importSrc( path + 'jquery.scrollFollow.js' ) );
	document.write( importSrc( path + 'jquery.scrollFollow.config.js' ) );
	
	//指定の要素にリンクを設定するJS
	document.write( importSrc( path + 'jquery.biggerlink.js' ) );

	//指定の要素の高さを揃えるJS
	document.write( importSrc( path + 'jquery.flatheights.js' ) );

	// ポップアップ
	document.write( importSrc( path + 'jquery.popupwindow.js' ) );
	document.write( importSrc( path + 'jquery.popupwindow.config.js' ) );
		
})();

