/*
* @title くっつけまゆげ
* @description まゆげがくっつきます。まゆげを選択してから実行して下さい。 (IE8 にも対応しました。) http://r.nanapi.jp/694/
* @include http://*
* @license MIT License
*/
(function() {
var p = document.selection ? document.selection.createRange().parentElement() : window.getSelection().anchorNode;
if (p) ((p.nodeName == "#text") ? p.parentNode : p).style.fontFamily = (document.documentMode == 8) ? "Tahoma" : "'Arial Unicode MS'";
})();