



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('shadrogi',
               '\u6211\u5C31\u662F\u6211,\u5E76\u6CA1\u6709\u4EC0\u4E48\u7279\u6B8A\u7684\u3002',
               'http://nihonmura.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2008/03/20/spod.6600.jpg',
               120, 
               120,
               'http://nihonmura.worldfriends.tv/public/browse.jhtml?action=profile&profileId=1722533');



