/*
* @title hatenagroup title fix
* @description はてなグループの title に search 文字列を表示
* @include http://*.g.hatena.ne.jp/*
*/
(function() {
var a = location.search.match(/\?word=(.*)/)[1];
if (a.length) {
document.title = decodeURIComponent(a) + " " + document.title;
}
})()