﻿
/* ------------------------------------------

	info : js読み込み用
	name : import.js

------------------------------------------ */

new function(){

	/* common */
	include('/js/scrollsmoothly.js');
	include('/js/module.js');

	
	/* IE判定 */
	var isMSIE = /*@cc_on!@*/false; //ie判定
	var isMSIE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false; //ie6判定
	var isMSIE9 = (navigator.userAgent.indexOf("MSIE 9")>=0) ? true : false; //ie9判定
	
	/* IEバージョンによって振り分け */
	if(isMSIE == false || isMSIE9 == true){
		
		//IE9または他ブラウザの場合
		include('/js/smoothRollOver.js');

	}else if(isMSIE == true && isMSIE9 == false){
		
		//IE6-8は特別仕様
		include('/js/easyRollover.js');
	}	
	
	
	
	/* smartPhone,tab 判定 */
	var judge = 0;
	if(navigator.userAgent.indexOf('iPhone') != -1) { judge = 1; }
	if(navigator.userAgent.indexOf('iPad') != -1){ judge = 1; }
	if(navigator.userAgent.indexOf('Android') != -1){ judge = 1; }
	if( judge==1 ){
		null;
	}
	
	
	/* インクルード js */
	function include( fileJSName ) {
		var inc_head = '<scr'+'ipt type="text/javascript" src="';
		var inc_foot = '"></script>';
		document.write( inc_head + fileJSName + inc_foot );
	}
	
}

