﻿/*
======== table of content. =================================

Description: include common script
Update: 2010/06/10-
Author: Japan Electronic Industrial Arts Co.Ltd.
        http://jeia.co.jp/

============================================================
*/

new function(){
	
	// IE(6)
	var isIE  = /*@cc_on!@*/false;
	var isIE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
	
	// library
	include( '/common/js/smooth.pack.js' );
	include( '/common/js/jquery.js' );
	
	if ( isIE ) {
		include( '/common/js/DD_belatedPNG.js' );
		include( '/common/js/DD_belatedPNG.init.js' );
	}
	
	// 上から実行
	if ( window.addEventListener ) {
		include( '/common/js/bgCanvas.js' );
		include( '/common/js/common.js' );
		include( '/common/js/bookmarks.js' );
		include( '/common/js/jquery.smoothRollOver.js' );
	}
	// 下から実行
	else {
		include( '/common/js/bgCanvas.js' );
		include( '/common/js/common.js' );
		include( '/common/js/bookmarks.js' );
		include( '/common/js/jquery.smoothRollOver.js' );
	}
	
	/**
	 * include
	 */
	function include( _file ) {
		var scr_head = '<scr'+'ipt type="text/javascript" src="';
		var scr_foot = '"></script>';
		
		document.write( scr_head + _file + scr_foot );
	}
}
