/*
* @title Fotolife HTML tag
* @description fotlifeで貼付けコードのようなもの
* @include http://f.hatena.ne.jp/*
* @license MIT License
* @require
*/
(function(){
var f,im,s,w,h,t,itm,tN;
f=document.getElementById('foto-body');
im=f.getElementsByTagName("img")[0];
s=im.src;
w=im.width;
h=im.height;
t=document.createElement('textarea');
t.setAttribute('rows','8');
t.setAttribute('cols','50');
itm='<img src="'+s+'" '+'width="'+w+'" height="'+h+'" \/>';
tN=document.createTextNode('<a href="'+s+'">'+itm+'<\/a>');
t.appendChild(tN);
f.appendChild(t);
})()