



function wfPhoto(url, width, height)
{
  this.url = url;
  this.width = width;
  this.height = height;
}

function wfSPOD(nickname, quote, link, photoUrl, photoWidth, photoHeight, profileLink)
{
  this.nickname = nickname;
  this.quote = quote;
  this.link = link;
  this.photo = new wfPhoto(photoUrl, photoWidth, photoHeight);
  this.profileLink = profileLink;
}

var wfSPODArray = new Array();



wfSPODArray[0] =
    new wfSPOD('sabrawolf',
               '\u3053\u3093\u306B\u3061\u306F\u307F\u3093\u306A\u3055\u3093\u3002 \u306F\u3058\u3081\u307E\u3057\u3066\u3002\u30D1\u30A4\u30ED\u30C3\u30C8\u30FB\u98DB\u884C\u6A5F\u306E\u6559\u5E2B\u3067\u3059\u3002',
               'http://e-japanese.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2007/12/07/spod.6300.jpg',
               120, 
               120,
               'http://e-japanese.worldfriends.tv/public/browse.jhtml?action=profile&profileId=1199633');



