



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('kebbeta',
               '\u597D\u597D\u7684\u628A\u63E1\u6BCF\u4E00\u5929\uFF0C\u76E1\u53EF\u80FD\u7684\u8B93\u81EA\u5DF1\u958B\u5FC3\u548C\u5E78\u798F\u3002',
               'http://nihonmura.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2007/01/25/spod.4715.jpg',
               120, 
               120,
               'http://nihonmura.worldfriends.tv/public/browse.jhtml?action=profile&profileId=1130166');



