



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('FuzzyDice',
               '\u3053\u3093\u306B\u3061\u306F.\u4EBA\u751F\u3092\u697D\u3057\u3093\u3067\u307E\u3059!\u53CB\u3060\u3061\u306B\u306A\u3063\u3066\u304F\u3060\u3055\u3044\u306D.',
               'http://friends.doitsunet.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/08/27/spod.5566.jpg',
               120, 
               120,
               'http://friends.doitsunet.com/public/browse.jhtml?action=profile&profileId=1467703');

wfSPODArray[1] =
    new wfSPOD('new_in_japan',
               '\u4F55\u4E8B\u3082\u7D4C\u9A13\u306D',
               'http://friends.doitsunet.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/09/12/spod.5765.jpg',
               120, 
               120,
               'http://friends.doitsunet.com/public/browse.jhtml?action=profile&profileId=1375801');



