



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('cherrypetals',
               'I want to do so many things but especially now...',
               'http://friends.japaneselearning.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/02/14/spod.6489.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('minmin36',
               'I want to study English.Please help me!',
               'http://friends.japaneselearning.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/09/26/spod.5851.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('yuri_0619',
               'A person of a christian please become my friend.',
               'http://friends.japaneselearning.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/08/27/spod.5564.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('sofiepink',
               'Friends say I\&#039;m innocent,crazy,amusing.',
               'http://friends.japaneselearning.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/02/06/spod.6483.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('may821',
               'I\&#039;d love to make friends all over the world!!',
               'http://friends.japaneselearning.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/03/03/spod.7343.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('kikuayu',
               'My\u3000dream\u3000is\u3000singer \uFF06dancer \uFF06actress \uFF06model.   \u2524\&#039;-\&#039;*\u251C  Do\u3000my\u3000best\uFF01\uFF01',
               'http://friends.japaneselearning.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/08/29/spod.7083.jpg',
               120, 120);



