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

summary:include common JavaScript

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

new function(){
	
	// 上から実行
	if ( window.addEventListener ) {
		include( '/common/js/pagetop.js' );
		include( '/common/js/styleswitcher.js' );
		include( '/common/js/heightLine.js' );
		include( '/common/js/rollover.js' );
		include( '/common/js/stripe.js' );
		
	}
	// 下から実行
	else {
		include( '/common/js/stripe.js' );
		include( '/common/js/rollover.js' );
		include( '/common/js/heightLine.js' );
		include( '/common/js/styleswitcher.js' );
		include( '/common/js/pagetop.js' );
	}
	
	function include( _file ) {
		var scr_head = '<scr'+'ipt type="text/javascript" src="';
		var scr_foot = '"></script>';
		
		document.write( scr_head + _file + scr_foot );
	}
}
