//import


// IE6のロールオーバー時のチラつき防止
try { 
	document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}


// 初期化
function _init( mode ) {
	if( isMac() ) $("body").addClass("mac");
	if( mode == "top" ) {
		$("#Loading").show();
		$('#slideMark').hide();
		$("#topWrap").css({position:"absolute"});
		window.onload = function() {
			new Top();
		}
	}
}


/*==================================================
	Mac判定
==================================================*/
function isMac(){
    return navigator.userAgent.toLowerCase().indexOf('mac') != -1;
}



