// 表示が乱れる人用
env = -1
tmp = location.search.substring( 1, location.search.length ).split( "&" );
for( i = 0; i < tmp.length; i++) {
	if( !tmp[i].indexOf( "=" ) ) {
		continue;
	}
	tmp0 = tmp[i].split( "=" );
	if( tmp0[0] == "css" ) {
		env = tmp0[1];
	}
}
if( env != "off" ) {
	document.write( "<LINK Rel=\"stylesheet\" Href=\"./ragnarok.css\">" );
	document.write( "<LINK Rel=\"stylesheet\" Href=\"./ragnarokSp.css\">" );
}

// メニューリストの動的装飾
function list( obj, over ) {
	if( over < 0 ) {
		obj.style.listStyleType = "disc";
		return false;
	}
	obj.style.listStyleType = "circle";
	return true;
}
