



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('oruoru',
               'hi!!! nice to meet you!!!',
               'http://friends.theforeigner-japan.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8277.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('Arisamiyu',
               'Je suis japonaise. J\&#039;etudie le francais maintenant.',
               'http://friends.theforeigner-japan.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8333.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('Les_nuages',
               'I like motorbike, bicycle, french film and music (rock, ballock, classic)',
               'http://friends.theforeigner-japan.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/10/31/spod.6081.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('HomaHomare',
               'My important things of my life are Peace, LOVE,Music, Nature, family and friends!',
               'http://friends.theforeigner-japan.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/03/26/spod.6624.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('ponpon77',
               'Let\&#039;s make friends with me.',
               'http://friends.theforeigner-japan.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8347.jpg',
               120, 120);



