/*
* @title 画像をランダム表示させる
* @description ページを更新させるごとにランダム表示されます。
* @include http://yuttari.g.hatena.ne.jp/
* @license MIT License
* @require
*/
img = new Array();
img[0] = "http://cdn-ak.f.st-hatena.com/images/fotolife/P/P-coin/20130914/20130914192655.jpg";
img[1] = "http://cdn-ak.f.st-hatena.com/images/fotolife/P/P-coin/20130827/20130827112956.jpg";
img[2] = "http://cdn-ak.f.st-hatena.com/images/fotolife/P/P-coin/20131031/20131031184330.jpg";
n = Math.floor(Math.random()*img.length);
var x = document.write("<img src='"+img[n]+"' border='0'>");
document.getElementById(free).innerHTML = x+"aaaaaa";