/* ==================================================

 * jQuery.importJavascript.js
 *
 * Author:H.Gunji
 * Version: 1.0.0
 * Last Modified: 2009/6/5
 * Library&Plugin: jQuery 1.3.2-1.4.2
 *
 * Dual licensed under the MIT and GPL licenses.
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 
================================================== */
;(function($){

//jQueryの名前空間の定義
var ns = 'importJavascript';

//初期化および実行
$[ns] = function(options){
	
	//デフォルト値の設定
	var c = jQuery.extend({
		importFiles: []
	},options);
	
	for(var i = 0; i < c.importFiles.length; i++){
		document.write('<script type="text\/javascript" src="' + c.importFiles[i] + '"><\/script>');
	}
	
};

var searchURL = 'http://search.pref.chiba.lg.jp/';
var thisDomain = location.href;

if(thisDomain.search(searchURL) == -1){
	$.importJavascript({
		importFiles :[
			'/shared/js/page_print.js',
			'/shared/js/random_class.js',
			'/shared/js/recentaccess.js',
			'/shared/js/ieselectexpander.js'
		]
	});
}

})(jQuery);


