



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('tama20071003',
               'Hi how are you??',
               'http://friends.freejapaneselessons.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8208.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('maomaorin',
               'Hello~ World!!',
               'http://friends.freejapaneselessons.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/05/spod.8154.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('YoheiMiura19770402',
               'I like traveling abroad and play the piano.',
               'http://friends.freejapaneselessons.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/07/16/spod.7658.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('demolish',
               'One chance in a life time. I wanna take care of it.',
               'http://friends.freejapaneselessons.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/08/06/spod.7007.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('naopoppo1013',
               'I can teach Japanese if you want it. Let\&#039;s be friends!!',
               'http://friends.freejapaneselessons.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/05/spod.8156.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('fenderplayer',
               'I never betray or cheat you. I\&#039;m not such a person!!',
               'http://friends.freejapaneselessons.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/08/21/spod.5490.jpg',
               120, 120);

wfSPODArray[6] =
    new wfSPOD('kirkgleam',
               'I\&#039;m a peaceful person, but I\&#039;m also a MMA fighter and training hard as one of my hobbies.',
               'http://friends.freejapaneselessons.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/06/13/spod.6781.jpg',
               120, 120);

wfSPODArray[7] =
    new wfSPOD('ponpon77',
               'Let\&#039;s make friends with me.',
               'http://friends.freejapaneselessons.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8347.jpg',
               120, 120);



