



function wfPhoto(url, width, height)
{
  this.url = url;
  this.width = width;
  this.height = height;
}

function wfSPOD(nickname, quote, link, photoUrl, photoWidth, photoHeight)
{
  this.nickname = nickname;
  this.quote = quote;
  this.link = link;
  this.photo = new wfPhoto(photoUrl, photoWidth, photoHeight);
}

var wfSPODArray = new Array();



wfSPODArray[0] =
    new wfSPOD('yoshi1124',
               'I am easy to get along with. I love to meet new friends!!!',
               'http://friends.tokyotimes.org/',
               
               
               'http://images.worldfriends.tv/photos/2007/08/09/spod.5411.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('cherrypetals',
               'I want to do so many things but especially now...',
               'http://friends.tokyotimes.org/',
               
               
               'http://images.worldfriends.tv/photos/2008/02/14/spod.6489.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('kikuayu',
               'My\u3000dream\u3000is\u3000singer \uFF06dancer \uFF06actress \uFF06model.   \u2524\&#039;-\&#039;*\u251C  Do\u3000my\u3000best\uFF01\uFF01',
               'http://friends.tokyotimes.org/',
               
               
               'http://images.worldfriends.tv/photos/2008/08/29/spod.7083.jpg',
               120, 120);



