

/*2006.09.11
/***************************************************************************************************/

	com = new commonClass();
	com.dirPath=com.getDirPath();

	//ナビゲーション専用JS呼び出し
	com.setJS('swfwrite.js');
	com.setJS('navigation.js');


function commonClass(){

		this.getDirPath = function(){
				var scriptSrc = document.getElementsByTagName('script')[0].getAttribute('src');
				var commonJS = 'common/common.js';
				var path = scriptSrc.replace(commonJS, '');
				return path;
		}
		
		this.setJS = function (file){	
				var commonDir = 'common/js/';
				var code = '<script type="text/javascript"';
				code += ' src="/' +commonDir + file + '">';
				code += '</script>';
				document.write(code);
		}

}


