/* スムースロールオーバー */

new function(){
	
	// IE(6)
	var isIE  = /*@cc_on!@*/false;
	var isIE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
	
	// library
	include( 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js' );
	
	if ( isIE ) {
		include( '../js/DD_belatedPNG.js' );
		include( '../js/DD_belatedPNG.init.js' );
	}
	
	// 上から実行
	if ( window.addEventListener ) {;
		include( '../js/smoothRollOver.js' );
		include( '../js/simplegallery.js' );
		include( '../js/ticker.js' );
		include( '../js/jquery.bxGallery.min.js' );
		include( '../js/topbase.js' );
		include( '../js/droppy.js' );
	}
	// 下から実行
	else {
		include( '../js/smoothRollOver.js' );
		include( '../js/simplegallery.js' );
		include( '../js/ticker.js' );
		include( '../js/jquery.bxGallery.min.js' );
		include( '../js/topbase.js' );
		include( '../js/droppy.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 );
	}
}

