



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('sqrt428',
               'If you want to know more about Japan and me,don\&#039;t hesitate to contact me.',
               'http://japan.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2008/12/04/spod.7264.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('SmileyDan78',
               'Hello, my name is Dan. I am 27 years old .  I like going to karaoke, having fun and travelling.',
               'http://japan.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2006/09/25/spod.4401.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('ponpon77',
               'Let\&#039;s make friends with me.',
               'http://japan.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8347.jpg',
               120, 120);



