



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('ponpon77',
               'Let\&#039;s make friends with me.',
               'http://taiwanhov2.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8347.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('snehahappy4u',
               'I am simple and easy going, down to earth girl.',
               'http://taiwanhov2.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2009/11/28/spod.7795.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('raseena',
               'I need lovely friends who is understanding my mind and feeling come to us welcomes you.',
               'http://taiwanhov2.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2008/12/04/spod.7263.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('Sobaka',
               'I like to travel, eat good food, go to movies, play darts and pool at the local bars and I enjoy photography.',
               'http://taiwanhov2.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/22/spod.8354.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('angel2055',
               'Everyone wants to meet only one person, who\&#039;s heart will say, \&#034;It is  \&#034;HE\&#034; or \&#034;SHE!\&#034;.',
               'http://taiwanhov2.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2009/10/19/spod.7763.jpg',
               120, 120);



