



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('moto0115',
               'I really like to play with and being around children and being a teacher is my dream.',
               'http://weheart.digitalworldtokyo.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/07/16/spod.7667.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('april422',
               'I am really normal person who loves to talk to people, and like to find out and try new stuff.',
               'http://weheart.digitalworldtokyo.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/11/22/spod.6222.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('totoromei',
               'Hello everyone.  I wanna make friend all over the world =)',
               'http://weheart.digitalworldtokyo.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/07/09/spod.5130.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('hanaxkim',
               'Hola! Bon dia! I love listening to music, going to rock shows',
               'http://weheart.digitalworldtokyo.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/12/07/spod.6302.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('tama20071003',
               'Hi how are you??',
               'http://weheart.digitalworldtokyo.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8208.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('lilac4',
               'Hi ^^',
               'http://weheart.digitalworldtokyo.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8216.jpg',
               120, 120);

wfSPODArray[6] =
    new wfSPOD('oruoru',
               'hi!!! nice to meet you!!!',
               'http://weheart.digitalworldtokyo.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8277.jpg',
               120, 120);

wfSPODArray[7] =
    new wfSPOD('shino810',
               'You can talk to me in Japanese. Talk with me many things!',
               'http://weheart.digitalworldtokyo.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8328.jpg',
               120, 120);

wfSPODArray[8] =
    new wfSPOD('Mitukin',
               'Hi all! trying hard over English and French',
               'http://weheart.digitalworldtokyo.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8172.jpg',
               120, 120);

wfSPODArray[9] =
    new wfSPOD('sakurai90',
               'lets be friends from all over the world , peace and love !!',
               'http://weheart.digitalworldtokyo.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8255.jpg',
               120, 120);



