/*
* @title Hatena profile icon random change
* @description はてなサービスのプロフィールを選んで変更できるアイコンにランダムに変更するだけ。
* @include http://*
* @license MIT License
*/
(function(){
var a = document.getElementsByClassName('profile-image');
for (var i=0;i<a.length;i++) {
var b=Math.floor(Math.random()*35+1)+'';
if (b.length==1){b='0'+b;}
a[i].src='http://www.hatena.ne.jp/images/profile/profile'+b+'.gif';}
})();