



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('lilac4',
               'Hi ^^',
               'http://friends.japan-japanese.info/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8216.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('creamycaramel',
               'I want an overseas friends.',
               'http://friends.japan-japanese.info/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8351.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('classicmusican',
               'I\&#039;d love to teach you English if I can learn Japanese or improve my French.',
               'http://friends.japan-japanese.info/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8202.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('moreeazy',
               'hi',
               'http://friends.japan-japanese.info/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/14/spod.8315.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('Wanka',
               'I travel a lot in asia, and loved it so much',
               'http://friends.japan-japanese.info/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8275.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('kvnthompsn',
               'Can you speak Mandarin/Putonghua?',
               'http://friends.japan-japanese.info/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/22/spod.8366.jpg',
               120, 120);

wfSPODArray[6] =
    new wfSPOD('Arisamiyu',
               'Je suis japonaise. J\&#039;etudie le francais maintenant.',
               'http://friends.japan-japanese.info/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8333.jpg',
               120, 120);

wfSPODArray[7] =
    new wfSPOD('Masha_K',
               'Hi to everyone!',
               'http://friends.japan-japanese.info/',
               
               
               'http://images.worldfriends.tv/photos/2008/11/18/spod.7237.jpg',
               120, 120);

wfSPODArray[8] =
    new wfSPOD('AudreyLukia',
               'I search Japanese friends for help me to learn Japanese',
               'http://friends.japan-japanese.info/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8257.jpg',
               120, 120);

wfSPODArray[9] =
    new wfSPOD('marekw',
               'I started to learn Japanese this month',
               'http://friends.japan-japanese.info/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8231.jpg',
               120, 120);



