



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://friends.soccerphile.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/07/16/spod.7667.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('ayakobabe',
               'Hate being called bimbo, it seems many people out there equate a pretty face with foolishness.',
               'http://friends.soccerphile.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/02/06/spod.4763.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('Rumi7',
               'I love the smell after rain.',
               'http://friends.soccerphile.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/01/24/spod.6451.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('junpi2',
               'I\&#039;m good at making friends.I wish you would like me!! Let\&#039;s enjoy our lives.',
               'http://friends.soccerphile.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/12/10/spod.7273.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('hanaxkim',
               'Hola! Bon dia! I love listening to music, going to rock shows',
               'http://friends.soccerphile.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/12/07/spod.6302.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('tama20071003',
               'Hi how are you??',
               'http://friends.soccerphile.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8208.jpg',
               120, 120);

wfSPODArray[6] =
    new wfSPOD('creamycaramel',
               'I want an overseas friends.',
               'http://friends.soccerphile.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8351.jpg',
               120, 120);

wfSPODArray[7] =
    new wfSPOD('sakurai90',
               'lets be friends from all over the world , peace and love !!',
               'http://friends.soccerphile.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8255.jpg',
               120, 120);

wfSPODArray[8] =
    new wfSPOD('hiromi1127',
               'Nice to meet you!',
               'http://friends.soccerphile.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/14/spod.8316.jpg',
               120, 120);

wfSPODArray[9] =
    new wfSPOD('oruoru',
               'hi!!! nice to meet you!!!',
               'http://friends.soccerphile.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8277.jpg',
               120, 120);



