



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('lanhuayi1024',
               'learning everyday',
               'http://www.paktology.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8267.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('yacchi2060',
               'Im easy going and very friendly. Im looking for some friends who can chat or hang out with me.',
               'http://www.paktology.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8233.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('sakurai90',
               'lets be friends from all over the world , peace and love !!',
               'http://www.paktology.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8255.jpg',
               120, 120);



